File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -4426,14 +4426,13 @@ done
4426
4426
4427
4427
4428
4428
if test " $YACC " ; then
4429
- if " $YACC " --version | sed q | $AWK ' { if ($4 < 1.875) exit 0; else exit 1;}' ; then
4429
+ if $YACC --version | sed q | $AWK ' { if ($4 < 1.875) exit 0; else exit 1;}' ; then
4430
4430
{ echo " $as_me :$LINENO : WARNING:
4431
4431
*** The installed version of Bison is too old. PostgreSQL needs
4432
4432
*** Bison version 1.875 or later." >&5
4433
4433
echo " $as_me : WARNING:
4434
4434
*** The installed version of Bison is too old. PostgreSQL needs
4435
4435
*** Bison version 1.875 or later." >&2 ; }
4436
- unset YACC
4437
4436
fi
4438
4437
fi
4439
4438
Original file line number Diff line number Diff line change 1
1
dnl Process this file with autoconf to produce a configure script.
2
- dnl $Header: /cvsroot/pgsql/configure.in,v 1.256 2003/06/07 16:32:05 momjian Exp $
2
+ dnl $Header: /cvsroot/pgsql/configure.in,v 1.257 2003/06/09 03:41:46 tgl Exp $
3
3
dnl
4
4
dnl Developers, please strive to achieve this order:
5
5
dnl
@@ -587,11 +587,10 @@ PGAC_CHECK_STRIP
587
587
AC_CHECK_PROGS(YACC, ['bison -y'])
588
588
589
589
if test "$YACC"; then
590
- if " $YACC" --version | sed q | $AWK '{ if ($4 < 1.875) exit 0; else exit 1;}'; then
590
+ if $YACC --version | sed q | $AWK '{ if ($4 < 1.875) exit 0; else exit 1;}'; then
591
591
AC_MSG_WARN([
592
592
*** The installed version of Bison is too old. PostgreSQL needs
593
593
*** Bison version 1.875 or later.])
594
- unset YACC
595
594
fi
596
595
fi
597
596
You can’t perform that action at this time.
0 commit comments