summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2005-09-16 18:58:03 +0000
committerJean Delvare <khali@linux-fr.org>2005-09-16 18:58:03 +0000
commita267b29dbe851b647643d2026cf39de85c5b11f4 (patch)
treeeccedadacdbf4a23c5cb96e9cb841932d8593713 /configure.ac
parent3785d923e2e94eb75daf151bba7f6a3e11544740 (diff)
downloadquilt-a267b29dbe851b647643d2026cf39de85c5b11f4.tar.gz
- configure.ac: Fix a copy-n-paste bug which was causing perl to be
checked twice and awk not to be checked properly.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 3f2acd6..3537eff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT([quilt],[0.42],[quilt-dev@nongnu.org])
AC_CONFIG_AUX_DIR(config)
AC_PREREQ(2.53)
-AC_REVISION ($Revision: 1.40 $)
+AC_REVISION ($Revision: 1.41 $)
PACKAGE_RELEASE=1
AC_SUBST(PACKAGE_RELEASE)
@@ -102,8 +102,8 @@ AC_ARG_WITH(awk, AC_HELP_STRING(
dnl Test for awk features that may be mising?
-if test -z "$PERL" ; then
- AC_MSG_ERROR([Please specify the location of Perl with the option '--with-perl'])
+if test -z "$AWK" ; then
+ AC_MSG_ERROR([Please specify the location of awk with the option '--with-awk'])
fi
dnl Checks for mktemp (for creating temporary files and directories)