Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e8f4f2f

Browse files
committed
Properly test for buggy flex 2.5.3.
1 parent efa58e1 commit e8f4f2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

config/programs.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Header: /cvsroot/pgsql/config/programs.m4,v 1.11 2003/04/06 22:45:22 petere Exp $
1+
# $Header: /cvsroot/pgsql/config/programs.m4,v 1.12 2003/05/06 23:33:52 momjian Exp $
22

33

44
# PGAC_PATH_FLEX
@@ -26,7 +26,7 @@ else
2626
then
2727
echo '%%' > conftest.l
2828
if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
29-
if $pgac_candidate --version | grep '2\.5\.3' >/dev/null 2>&1; then
29+
if $pgac_candidate --version | grep ' 2\.5\.3$' >/dev/null 2>&1; then
3030
pgac_broken_flex=$pgac_candidate
3131
continue
3232
fi

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -3577,7 +3577,7 @@ else
35773577
then
35783578
echo '%%' > conftest.l
35793579
if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
3580-
if $pgac_candidate --version | grep '2\.5\.3' >/dev/null 2>&1; then
3580+
if $pgac_candidate --version | grep '2\.5\.3$' >/dev/null 2>&1; then
35813581
pgac_broken_flex=$pgac_candidate
35823582
continue
35833583
fi

0 commit comments

Comments
 (0)