mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
802650ab7b
Put the damn support files in the right place. Modifying $(datadir) was not the right way to do it. I knew there was something about this port that bugged me. I am content now. Love is all you need. Give peace a chance.
81 lines
2.8 KiB
Plaintext
81 lines
2.8 KiB
Plaintext
--- Makefile.in.orig Sun Feb 27 11:18:10 2000
|
|
+++ Makefile.in Sat Oct 12 19:40:56 2002
|
|
@@ -49,7 +49,7 @@
|
|
|
|
# Directory in which to install library files.
|
|
datadir = @datadir@
|
|
-acdatadir = $(datadir)/autoconf
|
|
+acdatadir = $(datadir)/autoconf213
|
|
|
|
# Directory in which to install documentation info files.
|
|
infodir = @infodir@
|
|
@@ -68,7 +68,7 @@
|
|
DISTFILES = AUTHORS COPYING ChangeLog ChangeLog.1 INSTALL \
|
|
Makefile.in NEWS README TODO $(M4FILES) \
|
|
acconfig.h acfunctions acheaders acidentifiers \
|
|
- acmakevars acprograms autoconf.info* \
|
|
+ acmakevars acprograms autoconf213.info* \
|
|
autoconf.sh autoconf.texi install.texi \
|
|
autoheader.sh autoscan.pl autoreconf.sh autoupdate.sh ifnames.sh \
|
|
config.guess config.sub configure configure.in \
|
|
@@ -106,10 +106,10 @@
|
|
autoconf.m4f: autoconf.m4 acgeneral.m4 acspecific.m4 acoldnames.m4
|
|
autoheader.m4f: autoheader.m4 acgeneral.m4 acspecific.m4 acoldnames.m4
|
|
|
|
-info: autoconf.info @standards_info@ INSTALL
|
|
+info: autoconf213.info
|
|
|
|
# Use --no-split to avoid creating filenames > 14 chars.
|
|
-autoconf.info: autoconf.texi install.texi
|
|
+autoconf213.info: autoconf.texi install.texi
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --no-split --output=$@
|
|
|
|
INSTALL: install.texi
|
|
@@ -119,7 +119,7 @@
|
|
standards.info: standards.texi make-stds.texi
|
|
$(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --no-split --output=$@
|
|
|
|
-dvi: autoconf.dvi @standards_dvi@
|
|
+dvi: autoconf.dvi
|
|
|
|
autoconf.dvi: autoconf.texi
|
|
$(TEXI2DVI) $(srcdir)/autoconf.texi
|
|
@@ -141,7 +141,7 @@
|
|
|
|
install: all $(M4FILES) acconfig.h installdirs install-info
|
|
for p in $(ASCRIPTS); do \
|
|
- $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
|
+ $(INSTALL) $$p $(bindir)/`echo $$p|sed '$(transform)'`; \
|
|
done
|
|
for i in $(M4FROZEN); do \
|
|
$(INSTALL_DATA) $$i $(acdatadir)/$$i; \
|
|
@@ -150,16 +150,16 @@
|
|
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
done
|
|
-if test -f autoscan; then \
|
|
- $(INSTALL_PROGRAM) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
|
|
+ $(INSTALL) autoscan $(bindir)/`echo autoscan|sed '$(transform)'`; \
|
|
for i in acfunctions acheaders acidentifiers acprograms \
|
|
- acmakevars; do \
|
|
+ acmakevars config.guess config.sub; do \
|
|
$(INSTALL_DATA) $(srcdir)/$$i $(acdatadir)/$$i; \
|
|
done; \
|
|
else :; fi
|
|
|
|
# Don't cd, to avoid breaking install-sh references.
|
|
install-info: info installdirs
|
|
- if test -f autoconf.info; then \
|
|
+ if test -f autoconf213.info; then \
|
|
for i in *.info*; do \
|
|
$(INSTALL_DATA) $$i $(infodir)/$$i; \
|
|
done; \
|
|
@@ -174,7 +174,7 @@
|
|
rm -f $(bindir)/`echo $$p|sed '$(transform)'`; \
|
|
done
|
|
rm -fr $(acdatadir)
|
|
- cd $(infodir) && rm -f autoconf.info*
|
|
+ cd $(infodir) && rm -f autoconf213.info*
|
|
if test -f standards.info || test -f $(srcdir)/standards.info; \
|
|
then cd $(infodir) && rm -f standards.info*; fi
|
|
|