summaryrefslogtreecommitdiffstats
path: root/aclocal.m4
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-15 15:00:34 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-15 15:00:34 +0000
commit34ce343f9d4cf204dbfcbf8092a8f5c8358b6d83 (patch)
tree478d98da0b49c65453e16266b45d41a1db4617ad /aclocal.m4
parent5e61a8bda30e96bef5a1c6e265f4d6d19695102d (diff)
downloadquilt-34ce343f9d4cf204dbfcbf8092a8f5c8358b6d83.tar.gz
- John Vandenberg <jayvdb@gmail.com>: Make check depends on
programs that have been configured with --with-<name>=<prog>. Make dependencies would get confused by symlinks, so create wrappers in compat/ for make check. - Remove binaries in compat/ that are not listed in COMPAT_PROGRAMS or COMPAT_SYMLINKS. - configure.ac: use --without-$foo instead of --with-foo=none. - Fix processing of translations again, and update de.po.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 60e90f8..4e7d492 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -7,10 +7,10 @@ AC_DEFUN([QUILT_COMPAT_PROG_PATH],[
AC_ARG_WITH($2, AC_HELP_STRING(
[--with-$2], [name of the $2 executable to use]
- m4_if(internal_$2_cmd,[],[],[ (or 'none'
+ m4_if(internal_$2_cmd,[],[],[ (use --without-$2
to use an internal mechanism)])),
[
- if test ! x"$withval" = xnone; then
+ if test ! x"$withval" = xno; then
$1="$withval"
AC_MSG_NOTICE([Using $2 executable $$1])
COMPAT_SYMLINKS="$COMPAT_SYMLINKS $2"