diff options
author | Jim Meyering <meyering@lucent.com> | 2001-02-16 03:54:02 +0000 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2001-02-15 22:54:02 -0500 |
commit | e658449ebb92607c3f339ce9e9787f60d1fb6afc (patch) | |
tree | 94ba55ce76786383891e1ac5fd3fddc85358b0b4 /gcc/cp | |
parent | bcd0cabb199d7f49e76f8730fdcf5cbc76cc9cc7 (diff) | |
download | gcc-e658449ebb92607c3f339ce9e9787f60d1fb6afc.zip gcc-e658449ebb92607c3f339ce9e9787f60d1fb6afc.tar.gz gcc-e658449ebb92607c3f339ce9e9787f60d1fb6afc.tar.bz2 |
Makefile.in (install-common): Don't depend on installdirs here.
gcc/:
2001-01-20 Jim Meyering <meyering@lucent.com>
* Makefile.in (install-common): Don't depend on installdirs here.
Instead, make each of the lang.install-common targets (e.g.,
c++.install-common in cp/Make-lang.in) depend on it.
(install-driver): Depend on installdirs.
gcc/ch:
2001-02-15 Jim Meyering <meyering@lucent.com>
* Make-lang.in (CHILL.install-common): Depend on `installdirs'.
(CHILL.install-info): Likewise.
gcc/cp:
2001-02-15 Jim Meyering <meyering@lucent.com>
* Make-lang.in (c++.install-common): Depend on installdirs.
(c++.install-info): Likewise
(c++.install-man): Likewise
gcc/java:
2001-02-15 Jim Meyering <meyering@lucent.com>
* Make-lang.in (java.install-common): Depend on `installdirs'.
(java.install-info): Likewise.
From-SVN: r39744
Diffstat (limited to 'gcc/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index a65b21e..c6cc85e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2001-02-15 Jim Meyering <meyering@lucent.com> + + * Make-lang.in (c++.install-common): Depend on installdirs. + (c++.install-info): Likewise + (c++.install-man): Likewise + 2001-02-15 Mark Mitchell <mark@codesourcery.com> * typeck2.c (build_m_component_ref): Robustify. diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index de3c596..fc114a9 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -147,7 +147,7 @@ c++.install-normal: # Install the driver program as $(target)-g++ # and also as either g++ (if native) or $(tooldir)/bin/g++. -c++.install-common: +c++.install-common: installdirs -if [ -f cc1plus$(exeext) ] ; then \ if [ -f g++-cross$(exeext) ] ; then \ rm -f $(bindir)/$(GXX_CROSS_NAME)$(exeext); \ @@ -185,7 +185,7 @@ c++.install-common: fi ; \ fi -c++.install-info: c++.info +c++.install-info: c++.info installdirs if [ -f cc1plus$(exeext) ] ; then \ if [ -f $(srcdir)/cp/g++int.info ]; then \ rm -f $(infodir)/g++int.info*; \ @@ -202,7 +202,7 @@ c++.install-info: c++.info else true; fi; \ else true; fi -c++.install-man: $(srcdir)/cp/g++.1 +c++.install-man: installdirs $(srcdir)/cp/g++.1 -if [ -f cc1plus$(exeext) ] ; then \ if [ -f g++-cross$(exeext) ] ; then \ rm -f $(man1dir)/$(GXX_CROSS_NAME)$(manext); \ |