diff options
| author | Alexander Barton <alex@barton.de> | 2013-01-05 03:05:56 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2013-01-05 03:05:56 +0100 |
| commit | 0703fcd71983bd04f70101fd0143660174d22f84 (patch) | |
| tree | b6522b9600d39e4565b214ebd9bc0e26097bf0e9 /configure.ng | |
| parent | 4594583f52c46105ffd77eaaf4d9784809567324 (diff) | |
| download | ngircd-0703fcd71983bd04f70101fd0143660174d22f84.tar.gz ngircd-0703fcd71983bd04f70101fd0143660174d22f84.zip | |
autogen.sh: Enforce serial test harness on automake >=1.13
Diffstat (limited to 'configure.ng')
| -rw-r--r-- | configure.ng | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ng b/configure.ng index 732e55ee..47c95990 100644 --- a/configure.ng +++ b/configure.ng @@ -711,7 +711,8 @@ echo $ECHO_N " libiconv support: $ECHO_C" echo -if ! grep "^AUTOMAKE_OPTIONS = ../portab/ansi2knr" src/ngircd/Makefile.am >/dev/null 2>&1; then +define(_automake_regex_,[[^AUTOMAKE_OPTIONS = [a-z .\-]*/portab/ansi2knr]]) +if ! grep "_automake_regex_" src/ngircd/Makefile.am >/dev/null 2>&1; then echo "WARNING:" echo "This GNU automake generated build system does not support \"de-ANSI-fication\"," echo "therefore don't use it to generate \"official\" distribution archives!" |