diff options
author | Julien Cristau <jcristau@debian.org> | 2009-10-06 16:08:42 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-06 09:29:41 -0700 |
commit | 6676f49e34f8db7ef5767a6dbf6c2a4d2087f79c (patch) | |
tree | c6629938ac0cfb862c80f6f74337680d156ac9a8 | |
parent | a0363bf7b135d816e73849c91fa53d98fd6072d1 (diff) |
configure: quote argument to m4_pattern_forbid
Without this, configure spits out
../configure: line 15460: ac_fn_c_check_member: command not found
Also anchor the pattern to make it stricter.
Signed-off-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 07ea81d1e..383dd2fbe 100644 --- a/configure.ac +++ b/configure.ac @@ -637,7 +637,7 @@ dnl If you're seeing an error here, be sure you installed the lib/xtrans module dnl first and if it's not in the default location, that you set the ACLOCAL dnl environment variable to find it, such as: dnl ACLOCAL="aclocal -I ${PREFIX}/share/aclocal" -m4_pattern_forbid(XTRANS_CONNECTION_FLAGS) +m4_pattern_forbid([^XTRANS_CONNECTION_FLAGS$]) # Transport selection macro from xtrans.m4 XTRANS_CONNECTION_FLAGS |