40 lines
1.4 KiB
Plaintext
Raw Normal View History

2000-03-18 15:54:22 +00:00
--- Makefile.in.orig Tue Jan 5 14:27:16 1999
+++ Makefile.in Wed Nov 17 16:41:36 1999
@@ -22,6 +22,7 @@ srcdir = @srcdir@
VPATH = @srcdir@
INSTALL = @INSTALL@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
MAKEINFO = makeinfo
2000-03-18 15:54:22 +00:00
@@ -33,8 +34,8 @@ PERL = @PERL@
# Programs that are ALWAYS installed (and are created in the build dir).
ASCRIPTS = autoconf autoheader autoreconf autoupdate ifnames
-# M4 input that is frozen.
-M4FROZEN = autoconf.m4f autoheader.m4f
+# Don't freeze anything with OpenBSD m4
+M4FROZEN=
# All programs, including those only installed if you have perl.
SCRIPTS = $(ASCRIPTS) @SCRIPTS@
@@ -141,7 +142,7 @@ installdirs:
1999-01-06 21:29:51 +00:00
install: all $(M4FILES) acconfig.h installdirs install-info
1997-12-01 22:49:40 +00:00
for p in $(ASCRIPTS); do \
- $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
+ $(INSTALL_SCRIPT) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
1997-12-01 22:49:40 +00:00
done
1999-01-06 21:29:51 +00:00
for i in $(M4FROZEN); do \
$(INSTALL_DATA) $$i $(acdatadir)/$$i; \
@@ -150,7 +151,7 @@ install: all $(M4FILES) acconfig.h insta
1999-01-06 21:29:51 +00:00
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
1997-12-01 22:49:40 +00:00
done
-if test -f autoscan; then \
- $(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
+ $(INSTALL_SCRIPT) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
1997-12-01 22:49:40 +00:00
for i in acfunctions acheaders acidentifiers acprograms \
1999-01-06 21:29:51 +00:00
acmakevars; do \
1997-12-01 22:49:40 +00:00
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \