summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-13 01:55:55 +0000
committergeoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4>2004-02-13 01:55:55 +0000
commitf073886543def29293e8f3bbfa700e5226802728 (patch)
treefa77fe27c37d5ee86811456a75f40802610ca8e2
parent9ace46a5c9c62c1aed1aaed4d65adea7c63dfcfa (diff)
downloadppe42-gcc-f073886543def29293e8f3bbfa700e5226802728.tar.gz
ppe42-gcc-f073886543def29293e8f3bbfa700e5226802728.zip
* Makefile.in (install-man): Use $(CPP_INSTALL_NAME) and
$(GCOV_INSTALL_NAME) to install manpages. Remove generic rule for installing .1 manpages. Add rules for installing cpp and gcov manpages under their installed names. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@77745 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/Makefile.in17
2 files changed, 18 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c96cd876487..1d08e5309e7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+2004-02-12 Geoffrey Keating <geoffk@apple.com>
+
+ * Makefile.in (install-man): Use $(CPP_INSTALL_NAME) and
+ $(GCOV_INSTALL_NAME) to install manpages. Remove generic rule
+ for installing .1 manpages. Add rules for installing cpp
+ and gcov manpages under their installed names.
+
2004-02-12 Alexandre Oliva <aoliva@redhat.com>
* configure.ac (gcc_cv_ld): Don't set to LD if target is not
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 22640847394..2779e821903 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2974,23 +2974,28 @@ $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
# Install the man pages.
install-man: installdirs lang.install-man \
$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
- $(DESTDIR)$(man1dir)/cpp$(man1ext) \
- $(DESTDIR)$(man1dir)/gcov$(man1ext) \
+ $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
+ $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
$(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \
$(DESTDIR)$(man7dir)/gfdl$(man7ext) \
$(DESTDIR)$(man7dir)/gpl$(man7ext)
-$(DESTDIR)$(man1dir)/%$(man1ext): doc/%.1
+$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7
-rm -f $@
-$(INSTALL_DATA) $< $@
-chmod a-x $@
-$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7
+$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1
-rm -f $@
- -$(INSTALL_DATA) $< $@
+ -$(INSTALL_DATA) $< $@
-chmod a-x $@
-$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1
+$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1
+ -rm -f $@
+ -$(INSTALL_DATA) $< $@
+ -chmod a-x $@
+
+$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1
-rm -f $@
-$(INSTALL_DATA) $< $@
-chmod a-x $@
OpenPOWER on IntegriCloud