Commit 9118405f by Craig Rodrigues Committed by DJ Delorie

configure.in: Use "missing" script to generate warning if flex or bison programs not found...

* configure.in: Use "missing" script to generate warning if
flex or bison programs not found, instead of invoking "false".
* configure: Rebuilt.

From-SVN: r59735
parent 2e185155
i2002-12-02 Craig Rodrigues <rodrigc@gcc.gnu.org>
* configure.in: Use "missing" script to generate warning if
flex or bison programs not found, instead of invoking "false".
* configure: Rebuilt.
Mon Dec 2 20:28:48 CET 2002 Jan Hubicka <jh@suse.cz> Mon Dec 2 20:28:48 CET 2002 Jan Hubicka <jh@suse.cz>
* unroll.c (copy_loop_body): Copy CONST_OR_PURE_CALL_P. * unroll.c (copy_loop_body): Copy CONST_OR_PURE_CALL_P.
......
...@@ -601,7 +601,7 @@ dnl LEXLIB is not useful in gcc. ...@@ -601,7 +601,7 @@ dnl LEXLIB is not useful in gcc.
if test -f $srcdir/../flex/skel.c; then if test -f $srcdir/../flex/skel.c; then
FLEX='$(objdir)/../flex/flex' FLEX='$(objdir)/../flex/flex'
else else
AC_CHECK_PROG(FLEX, flex, flex, false) AC_CHECK_PROG(FLEX, flex, flex, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing flex)
fi fi
# Bison? # Bison?
...@@ -609,7 +609,7 @@ fi ...@@ -609,7 +609,7 @@ fi
if test -f $srcdir/../bison/bison.simple; then if test -f $srcdir/../bison/bison.simple; then
BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/' BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/'
else else
AC_CHECK_PROG(BISON, bison, bison, false) AC_CHECK_PROG(BISON, bison, bison, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing bison)
fi fi
# These libraries may be used by collect2. # These libraries may be used by collect2.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment