diff options
author | Julien Cristau <jcristau@debian.org> | 2009-10-06 16:08:42 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-10-06 19:40:19 -0700 |
commit | 8c51b886400c5962b31ff565771be1b01a3ca8fb (patch) | |
tree | d97404b2e559d55f85e18d4cb918736eb4116c9d /configure.ac | |
parent | 6ee61578ddb9f880ef12bbe9c3671d7dd53f2809 (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>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0221b37b8..cb9721ba6 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 |