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
This commit is contained in:
parent
950ccbc491
commit
7bfb5cccd7
@ -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
|
||||
|
@ -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 $@
|
||||
|
@ -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
|
||||
|
@ -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 $@
|
||||
|
@ -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
|
||||
|
@ -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 $@
|
||||
|
@ -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,
|
||||
|
@ -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 $@
|
||||
|
Loading…
Reference in New Issue
Block a user