[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Treat autoupdate as a perl script
From: |
Tim Van Holder |
Subject: |
Treat autoupdate as a perl script |
Date: |
Mon, 26 Mar 2001 19:17:33 +0200 |
2001-03-25 Tim Van Holder <address@hidden>
* Makefile.am, configure.in: Let these files know
that autoupdate is a Perl script.
Index: Makefile.am
===================================================================
RCS file: /cvs/autoconf/Makefile.am,v
retrieving revision 1.41
diff -u -r1.41 Makefile.am
--- Makefile.am 2001/02/21 08:59:24 1.41
+++ Makefile.am 2001/03/26 17:13:43
@@ -27,8 +27,8 @@
ACLOCAL_AMFLAGS = --version >/dev/null && touch aclocal.m4
WGET = wget
-bin_SCRIPTS = autoconf autoheader autoreconf autoupdate ifnames
@PERLSCRIPTS@
-EXTRA_SCRIPTS = autoscan
+bin_SCRIPTS = autoconf autoheader autoreconf ifnames @PERLSCRIPTS@
+EXTRA_SCRIPTS = autoscan autoupdate
# FIXME: Current Automakes are blind and cannot see inner AC_SUBST,
# so help it.
Index: configure.in
===================================================================
RCS file: /cvs/autoconf/configure.in,v
retrieving revision 1.42
diff -u -r1.42 configure.in
--- configure.in 2001/03/19 18:14:45 1.42
+++ configure.in 2001/03/26 17:13:49
@@ -31,9 +31,9 @@
AC_SUBST(PERL)dnl
AC_SUBST(PERLSCRIPTS)dnl
if test "$PERL" != no; then
- PERLSCRIPTS=autoscan
+ PERLSCRIPTS="autoscan autoupdate"
else
- AC_MSG_WARN([autoscan will not be built since perl is not found])
+ AC_MSG_WARN([autoscan and autoupdate will not be built since perl is not
found])
fi
AC_PROG_INSTALL
- Treat autoupdate as a perl script,
Tim Van Holder <=