summaryrefslogtreecommitdiff
path: root/devel/gmake381
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1997-02-05 17:01:16 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1997-02-05 17:01:16 +0000
commit1b111b2573394c83545cecda7ab9d34532b4a30a (patch)
tree4d81e6e7924b81a7f94549ff335dd76bb9ae30c9 /devel/gmake381
parentFix for problem indicated in PR #2666: (diff)
This patch now modifies Makefile.in to correctly call install-info:
--infodir -> --info-dir Give --defentry= option as make.texinfo doesn't have @direntry. Noticed by: Chris Timmons <skynyrd@opus.cts.cwu.edu> (Closing PR #2646.)
Notes
Notes: svn path=/head/; revision=5542
Diffstat (limited to 'devel/gmake381')
-rw-r--r--devel/gmake381/files/patch-aa87
1 files changed, 39 insertions, 48 deletions
diff --git a/devel/gmake381/files/patch-aa b/devel/gmake381/files/patch-aa
index eceebb4ea2cb..6c9d091addb4 100644
--- a/devel/gmake381/files/patch-aa
+++ b/devel/gmake381/files/patch-aa
@@ -1,48 +1,39 @@
-*** Makefile.in.orig Wed Apr 5 08:41:26 1995
---- Makefile.in Sat Apr 8 17:49:22 1995
-***************
-*** 92,98 ****
- # Number to put on the man page filename.
- manext = 1
- # Prefix to put on installed `make' binary file name.
-! binprefix =
- # Prefix to put on installed `make' man page file name.
- manprefix = $(binprefix)
-
---- 92,98 ----
- # Number to put on the man page filename.
- manext = 1
- # Prefix to put on installed `make' binary file name.
-! binprefix = g
- # Prefix to put on installed `make' man page file name.
- manprefix = $(binprefix)
-
-***************
-*** 186,191 ****
---- 186,193 ----
-
- installdirs:
- $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
-+ rm -f $(bindir)/$(binprefix)make $(infodir)/make.info \
-+ $(mandir)/$(manprefix)make.$(manext)
-
- $(bindir)/$(binprefix)make: make
- $(INSTALL_PROGRAM) make $@.new
-***************
-*** 260,266 ****
- $(SHELL) config.status
- glob/Makefile: config.status $(srcdir)/glob/Makefile.in
- $(SHELL) config.status
-! config.h: stamp-config ;
- stamp-config: config.status $(srcdir)/config.h.in
- $(SHELL) config.status
- touch stamp-config
---- 262,269 ----
- $(SHELL) config.status
- glob/Makefile: config.status $(srcdir)/glob/Makefile.in
- $(SHELL) config.status
-! config.h: stamp-config
-!
- stamp-config: config.status $(srcdir)/config.h.in
- $(SHELL) config.status
- touch stamp-config
+--- Makefile.in.orig Thu Aug 29 06:13:09 1996
++++ Makefile.in Thu Feb 6 01:46:54 1997
+@@ -79,7 +79,7 @@
+ # Number to put on the man page filename.
+ manext = 1
+ # Prefix to put on installed `make' binary file name.
+-binprefix =
++binprefix = g
+ # Prefix to put on installed `make' man page file name.
+ manprefix = $(binprefix)
+
+@@ -175,6 +175,8 @@
+
+ installdirs:
+ $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
++ rm -f $(bindir)/$(binprefix)make $(infodir)/make.info \
++ $(mandir)/$(manprefix)make.$(manext)
+
+ $(bindir)/$(binprefix)make: make
+ $(INSTALL_PROGRAM) make $@.new
+@@ -206,7 +208,7 @@
+ # fail gracefully when there is an unknown command.
+ if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
+ if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
+- install-info --infodir=$(infodir) $$dir/make.info; \
++ install-info --info-dir=$(infodir) --defentry='* gmake: (make). GNU make utility' $$dir/make.info; \
+ else true; fi
+
+ $(mandir)/$(manprefix)make.$(manext): make.man
+@@ -250,7 +252,8 @@
+ $(SHELL) config.status
+ glob/Makefile: config.status $(srcdir)/glob/Makefile.in
+ $(SHELL) config.status
+-config.h: stamp-config ;
++config.h: stamp-config
++
+ stamp-config: config.status $(srcdir)/config.h.in
+ $(SHELL) config.status
+ touch stamp-config