Commit c8b5beb8 by Kelley Cook Committed by R. Kelley Cook

configure.in (gcc_cv_prog_cmp_skip): Flipflop make_compare_target and gcc_cv_prog_cmp_skip.


2003-08-08  Kelley Cook  <kelleycook@wideopenwest.com>

	* configure.in (gcc_cv_prog_cmp_skip): Flipflop make_compare_target
	and gcc_cv_prog_cmp_skip.
	* configure: Regenerate.

From-SVN: r70247
parent 6b3d1e47
2003-08-08 Kelley Cook <kelleycook@wideopenwest.com>
* configure.in (gcc_cv_prog_cmp_skip): Flipflop make_compare_target
and gcc_cv_prog_cmp_skip.
* configure: Regenerate.
2003-08-08 Stan Cox <scox@redhat.com> 2003-08-08 Stan Cox <scox@redhat.com>
* config/iq2000: New port. * config/iq2000: New port.
......
...@@ -2702,19 +2702,19 @@ else ...@@ -2702,19 +2702,19 @@ else
echo cdfoo >t2 echo cdfoo >t2
if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
make_compare_target=slowcompare gcc_cv_prog_cmp_skip=slowcompare
else else
make_compare_target=gnucompare gcc_cv_prog_cmp_skip=gnucompare
fi fi
else else
make_compare_target=slowcompare gcc_cv_prog_cmp_skip=slowcompare
fi fi
rm t1 t2 rm t1 t2
gcc_cv_prog_cmp_skip=$make_compare_target
fi fi
echo "$ac_t""$gcc_cv_prog_cmp_skip" 1>&6 echo "$ac_t""$gcc_cv_prog_cmp_skip" 1>&6
make_compare_target=$gcc_cv_prog_cmp_skip
# How about lex? # How about lex?
......
...@@ -642,16 +642,16 @@ AC_CACHE_CHECK([for cmp's capabilities], gcc_cv_prog_cmp_skip, ...@@ -642,16 +642,16 @@ AC_CACHE_CHECK([for cmp's capabilities], gcc_cv_prog_cmp_skip,
echo cdfoo >t2 echo cdfoo >t2
if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
make_compare_target=slowcompare gcc_cv_prog_cmp_skip=slowcompare
else else
make_compare_target=gnucompare gcc_cv_prog_cmp_skip=gnucompare
fi fi
else else
make_compare_target=slowcompare gcc_cv_prog_cmp_skip=slowcompare
fi fi
rm t1 t2 rm t1 t2
gcc_cv_prog_cmp_skip=$make_compare_target
]) ])
make_compare_target=$gcc_cv_prog_cmp_skip
AC_SUBST(make_compare_target) AC_SUBST(make_compare_target)
# How about lex? # How about lex?
......
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