This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A patch for Makefile.in


cpp.1 is left out. Here is a patch.


-- 
H.J. Lu (hjl@gnu.org)
----
Wed Jul  1 07:42:00 1998  H.J. Lu  (hjl@gnu.org)

	* Makefile.in (install-man): Install cpp.1.

Index: Makefile.in
===================================================================
RCS file: /home/work/cvs/gnu/egcs/gcc/Makefile.in,v
retrieving revision 1.1.1.62
diff -u -r1.1.1.62 Makefile.in
--- Makefile.in	1998/07/01 02:32:20	1.1.1.62
+++ Makefile.in	1998/07/01 16:40:33
@@ -2390,7 +2394,8 @@
 	-chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
 
 # Install the man pages.
-install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
+install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 \
+  $(srcdir)/cpp.1 lang.install-man
 	-if [ -f gcc-cross$(exeext) ] ; then \
 	  rm -f $(mandir)/$(GCC_CROSS_NAME)$(manext); \
 	  $(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/$(GCC_CROSS_NAME)$(manext); \
@@ -2402,6 +2407,7 @@
 	fi
 	-rm -f $(mandir)/cccp$(manext)
 	-$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
+	-$(INSTALL_DATA) $(srcdir)/cpp.1 $(mandir)/cpp$(manext)
 	-chmod a-x $(mandir)/cccp$(manext)
 
 # Install the library.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]