forked from Lainports/freebsd-ports
previous changes to this port was one of them. This commit fixes:
- We definetely need to check the existence of ${PREFIX}/dir and generate
it if needed before install-info gets invoked.
- Use empty definition of STRIP instead of changing every appearance
of ${INSTALL_SCRIPT} in Makefile.in to ${INSTALL} especially since
this port installs no files that need to be stripped.
- No need to add rule to regenerate .info file when there's one in the
distributed Makefile.in.
- Instead of removing old piece of .info files in post-install target,
leave it to the .texi.info: rule in the distributed Makefile.
11 lines
339 B
Text
11 lines
339 B
Text
--- Makefile.in.orig Mon Jun 23 11:25:50 1997
|
|
+++ Makefile.in Fri Sep 19 18:19:19 1997
|
|
@@ -196,7 +196,7 @@
|
|
.texi.info:
|
|
@cd $(srcdir) && rm -f $@ $@-[0-9] $@-[0-9][0-9]
|
|
cd $(srcdir) \
|
|
- && $(MAKEINFO) `echo $< | sed 's,.*/,,'`
|
|
+ && $(MAKEINFO) --no-split `echo $< | sed 's,.*/,,'`
|
|
|
|
.texi.dvi:
|
|
TEXINPUTS=$(srcdir):$$TEXINPUTS \
|