Index: ChangeLog
authorGeoffrey Keating <geoffk@apple.com>
Tue, 14 Jun 2005 09:03:46 +0000 (09:03 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Tue, 14 Jun 2005 09:03:46 +0000 (09:03 +0000)
2005-06-13  Geoffrey Keating  <geoffk@apple.com>

* Makefile.in (install-man): Doesn't really depend on installdirs.
(various rules for installing manpages): Do depend on installdirs.

Index: cp/ChangeLog
2005-06-13  Geoffrey Keating  <geoffk@apple.com>

* Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
(rule for installing g++.1 manpage): Does depend on installdirs.

Index: fortran/ChangeLog
2005-06-13  Geoffrey Keating  <geoffk@apple.com>

* Make-lang.in (fortran.install-man): Doesn't depend on installdirs.
(rule for installing f95.1 manpage): Does depend on installdirs.

Index: java/ChangeLog
2005-06-13  Geoffrey Keating  <geoffk@apple.com>

* Make-lang.in (rule for installing gcj.1): Depends on installdirs.

From-SVN: r100928

gcc/ChangeLog
gcc/Makefile.in
gcc/cp/ChangeLog
gcc/cp/Make-lang.in
gcc/fortran/ChangeLog
gcc/fortran/Make-lang.in
gcc/java/ChangeLog
gcc/java/Make-lang.in

index 3bd677781ffb3496ddc5e18ef57d35cb7e875921..dc429c22e836bc0c3422f946bb9331d194fe20b7 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-13  Geoffrey Keating  <geoffk@apple.com>
+
+       * Makefile.in (install-man): Doesn't really depend on installdirs.
+       (various rules for installing manpages): Do depend on installdirs.
+
 2005-06-14  Nathan Sidwell  <nathan@codesourcery.com>
 
        * unwind-dw2-fde-darwin.c (examine_objects): Fix aliasing in
index e1b10bee7687d28075e7b20e67030b7369cf2619..8646e9e6bb5b52e508e54f8c704e924a9764c816 100644 (file)
@@ -3539,7 +3539,7 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
        else true; fi;
 
 # Install the man pages.
-install-man: installdirs lang.install-man \
+install-man: lang.install-man \
        $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
        $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
        $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
@@ -3547,22 +3547,22 @@ install-man: installdirs lang.install-man \
        $(DESTDIR)$(man7dir)/gfdl$(man7ext) \
        $(DESTDIR)$(man7dir)/gpl$(man7ext)
 
-$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7
+$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
 
-$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1
+$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
 
-$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1
+$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
 
-$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1
+$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
index 00a029de5cb6ff8fff4021a13051cf253a529fe1..fe319c1c4972d1a7dda354e4deeecb5ee2cfd226 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-13  Geoffrey Keating  <geoffk@apple.com>
+
+       * Make-lang.in (c++.install-man): Doesn't really depend on installdirs.
+       (rule for installing g++.1 manpage): Does depend on installdirs.
+
 2005-06-13  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR c++/20789
index 30b15fc4d62596af3e54ed801a94018c70860a66..050e9dcdb09207af5d32e3a9d7a0a8de67303d64 100644 (file)
@@ -181,9 +181,9 @@ c++.install-common: installdirs
 doc/g++.1: doc/gcc.1
        cp doc/gcc.1 doc/g++.1
 
-c++.install-man: installdirs $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext) 
+c++.install-man: $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext) 
 
-$(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext): doc/g++.1
+$(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext): doc/g++.1 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
index 309aff1fe663643fc9e6f7041cff273fcfd9f159..bcad19f20db793614c76d5d043b5b5bd74fd58d5 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-13  Geoffrey Keating  <geoffk@apple.com>
+
+       * Make-lang.in (fortran.install-man): Doesn't depend on installdirs.
+       (rule for installing f95.1 manpage): Does depend on installdirs.
+
 2005-06-13  Jakub Jelinek  <jakub@redhat.com>
 
        PR fortran/22038
index 11fbc1de683f376c810eae25abfef84e59c30b31..384ff6b75033512a97a0fd1dbeee19956d63b7c4 100644 (file)
@@ -207,10 +207,10 @@ f95.install-common: installdirs
 
 install-info:: $(DESTDIR)$(infodir)/gfortran.info
 
-f95.install-man: installdirs \
-       $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
+f95.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
 
-$(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1
+$(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1 \
+               installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@
index 320be475713e06928a178d5c22b72306da0b6578..d8cdd416544a69cf42ddc1c3e4c94fa0f442590d 100644 (file)
@@ -1,3 +1,7 @@
+2005-06-13  Geoffrey Keating  <geoffk@apple.com>
+
+       * Make-lang.in (rule for installing gcj.1): Depends on installdirs.
+
 2005-06-13  Per Bothner  <per@bothner.com>
 
        * expr.c (int highest_label_pc_this_method,
index 31bb323f668f049a7215532b30aa619b8f9def9d..c6f714c9c0353ac139e7355a444fd75f9853a079 100644 (file)
@@ -453,7 +453,7 @@ java.install-man: installdirs \
          chmod a-x $$man_name ; \
        done
 
-$(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext): doc/gcj.1
+$(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext): doc/gcj.1 installdirs
        -rm -f $@
        -$(INSTALL_DATA) $< $@
        -chmod a-x $@