diff options
author | foobar <sniper@php.net> | 2007-05-24 19:35:46 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2007-05-24 19:35:46 +0000 |
commit | 91d98d2986c0d77d2ebe66a3a8feff1b8b61edb0 (patch) | |
tree | 2dc1588c3b9590ea6246275dee53430ae597976e | |
parent | 9bca44df220878fb8659ecb5914b4885e34c8209 (diff) | |
download | php-git-91d98d2986c0d77d2ebe66a3a8feff1b8b61edb0.tar.gz |
- Fix idiotic change in logic. (hint: flex is _REQUIRED_ for building PHP!
-rw-r--r-- | acinclude.m4 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 24dec1a430..67a1446de5 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2047,9 +2047,8 @@ AC_DEFUN([PHP_PROG_LEX], [ case $php_cv_flex_version in ""|invalid[)] - flex_msg="flex versions supported for regeneration of the Zend/PHP parsers: $flex_version_list (found: $flex_version)." - AC_MSG_WARN([$flex_msg]) - LEX="echo \"error: $flex_msg\" 1>&2 ; exit 1;" + flex_msg="flex versions supported for regeneration of the Zend/PHP parsers: $flex_version_list (found: $flex_version)." + AC_MSG_ERROR([$flex_msg]) ;; esac PHP_SUBST(LEX) |