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/java/Make-lang.in | |
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/java/Make-lang.in')
-rw-r--r-- | gcc/java/Make-lang.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/Make-lang.in b/gcc/java/Make-lang.in index 49080ed..3a85d32 100644 --- a/gcc/java/Make-lang.in +++ b/gcc/java/Make-lang.in @@ -158,7 +158,7 @@ java.dvi: java/gcj.dvi # Nothing to do here. java.install-normal: -java.install-common: +java.install-common: installdirs -if [ -f $(GCJ)$(exeext) ]; then \ if [ -f $(GCJ)-cross$(exeext) ]; then \ rm -f $(bindir)/$(JAVA_CROSS_NAME)$(exeext); \ @@ -184,7 +184,7 @@ java.uninstall: -rm -rf $(bindir)/$(JAVA_INSTALL_NAME)$(exeext) -rm -rf $(bindir)/$(JAVA_CROSS_NAME)$(exeext) -java.install-info: +java.install-info: installdirs if [ -f jc1$(exeext) ] ; then \ if [ -f $(srcdir)/java/gcj.info ]; then \ rm -f $(infodir)/gcj.info*; \ |