diff options
author | Nathan Sidwell <nathan@acm.org> | 1999-01-20 23:33:47 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-01-20 16:33:47 -0700 |
commit | f1cc886f77980348c363894f40de34f1308ca26c (patch) | |
tree | 00102395d6ddd2b25a702ebc4f2ac8b6b65d7e1a | |
parent | d736a76cf6249ffa32496955b66477c581d5dcb6 (diff) | |
download | gcc-f1cc886f77980348c363894f40de34f1308ca26c.zip gcc-f1cc886f77980348c363894f40de34f1308ca26c.tar.gz gcc-f1cc886f77980348c363894f40de34f1308ca26c.tar.bz2 |
Makefile.in (install-common): Remove extraneous chmod for gcov install.
* Makefile.in (install-common): Remove extraneous chmod for gcov
install.
From-SVN: r24794
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 45889f2..392b659 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jan 21 00:29:35 1999 Nathan Sidwell <nathan@acm.org> + + * Makefile.in (install-common): Remove extraneous chmod for gcov + install. + Wed Jan 20 18:15:08 1999 Dave Brolley <brolley@cygnus.com> * function.c (assign_parms): Save and restore setting of diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 1fee69f..cdbebd8 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -2450,7 +2450,6 @@ install-common: native installdirs $(EXTRA_PARTS) lang.install-common then \ rm -f $(bindir)/gcov$(exeext); \ $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \ - chmod a+x $(bindir)/gcov$(exeext); \ fi # Install the driver program as $(target_alias)-gcc |