Commit 7bfb5ccc by Geoffrey Keating Committed by Geoffrey Keating

Index: ChangeLog

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
parent 950ccbc4
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> 2005-06-14 Nathan Sidwell <nathan@codesourcery.com>
* unwind-dw2-fde-darwin.c (examine_objects): Fix aliasing in * unwind-dw2-fde-darwin.c (examine_objects): Fix aliasing in
......
...@@ -3539,7 +3539,7 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs ...@@ -3539,7 +3539,7 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
else true; fi; else true; fi;
# Install the man pages. # Install the man pages.
install-man: installdirs lang.install-man \ install-man: lang.install-man \
$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \ $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \ $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \ $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
...@@ -3547,22 +3547,22 @@ install-man: installdirs lang.install-man \ ...@@ -3547,22 +3547,22 @@ install-man: installdirs lang.install-man \
$(DESTDIR)$(man7dir)/gfdl$(man7ext) \ $(DESTDIR)$(man7dir)/gfdl$(man7ext) \
$(DESTDIR)$(man7dir)/gpl$(man7ext) $(DESTDIR)$(man7dir)/gpl$(man7ext)
$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs
-rm -f $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs
-rm -f $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs
-rm -f $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs
-rm -f $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
......
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> 2005-06-13 Nathan Sidwell <nathan@codesourcery.com>
PR c++/20789 PR c++/20789
......
...@@ -181,9 +181,9 @@ c++.install-common: installdirs ...@@ -181,9 +181,9 @@ c++.install-common: installdirs
doc/g++.1: doc/gcc.1 doc/g++.1: doc/gcc.1
cp doc/gcc.1 doc/g++.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 $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
......
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> 2005-06-13 Jakub Jelinek <jakub@redhat.com>
PR fortran/22038 PR fortran/22038
......
...@@ -207,10 +207,10 @@ f95.install-common: installdirs ...@@ -207,10 +207,10 @@ f95.install-common: installdirs
install-info:: $(DESTDIR)$(infodir)/gfortran.info install-info:: $(DESTDIR)$(infodir)/gfortran.info
f95.install-man: installdirs \ f95.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
$(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 $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
......
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> 2005-06-13 Per Bothner <per@bothner.com>
* expr.c (int highest_label_pc_this_method, * expr.c (int highest_label_pc_this_method,
......
...@@ -453,7 +453,7 @@ java.install-man: installdirs \ ...@@ -453,7 +453,7 @@ java.install-man: installdirs \
chmod a-x $$man_name ; \ chmod a-x $$man_name ; \
done done
$(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext): doc/gcj.1 $(DESTDIR)$(man1dir)/$(JAVA_INSTALL_NAME)$(man1ext): doc/gcj.1 installdirs
-rm -f $@ -rm -f $@
-$(INSTALL_DATA) $< $@ -$(INSTALL_DATA) $< $@
-chmod a-x $@ -chmod a-x $@
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment