summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2001-07-24 08:43:06 +0000
committerAkim Demaille <akim@epita.fr>2001-07-24 08:43:06 +0000
commit91fbae6966ef2703832fb830f96e30afb8020b90 (patch)
tree7dfb8995ed177e83f75241aad6060016e4b4e0f5 /configure.ac
parent32725c699584236b6e28bcc72e190c61fa84a040 (diff)
downloadautoconf-91fbae6966ef2703832fb830f96e30afb8020b90.tar.gz
* Makefile.am: Ship, build and install Autom4te.
(SUBDIRS): Add lib. * lib/Autoconf/Struct.pm: New, from Automake 1.5. * configure.in: Require Perl. * man/autom4te.in: New.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 878a83a0..31cc31fb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,11 +36,8 @@ AM_MISSING_PROG(HELP2MAN, help2man)
# We use a path for perl so the #! line in autoscan will work.
AC_PATH_PROG(PERL, perl, no)
AC_SUBST(PERL)dnl
-AC_SUBST(PERLSCRIPTS)dnl
-if test "$PERL" != no; then
- PERLSCRIPTS="autoscan autoupdate"
-else
- AC_MSG_WARN([autoscan and autoupdate will not be built since perl is not found])
+if test "$PERL" = no; then
+ AC_MSG_ERROR([perl is not found])
fi
AC_PROG_INSTALL
@@ -52,6 +49,7 @@ AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_CONFIG_FILES(Makefile m4/Makefile man/Makefile doc/Makefile config/Makefile
+ lib/Makefile lib/Autoconf/Makefile
tests/Makefile tests/atconfig)
AC_OUTPUT