Skip to content

Commit

Permalink
- Fix makedist
Browse files Browse the repository at this point in the history
  • Loading branch information
Derick Rethans committed Mar 20, 2002
1 parent 8581f83 commit 85682d5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makedist
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ VER=$1 ; shift

old_IFS="$IFS"
IFS=.
eval set `bison -V|sed "s/GNU Bison version //"`
if test "$1" = "1" && test "28" -gt "$2"; then
echo "Please use Bison 1.28 or higher"
eval set `bison --version| grep 'GNU Bison' | cut -d ' ' -f 4 | sed -e 's/\./ /'`
if test "${1}" = "1" -a "${2}" -lt "28"; then
echo "You will need bison 1.28 if you want to regenerate the Zend parser (found ${1}.${2}).)"
exit 10
fi
IFS="$old_IFS"

PHPROOT=:pserver:[email protected]:/repository
ZENDROOT=:pserver:cvsread@cvs.zend.com:/repository
ZENDROOT=:pserver:cvsread@cvs.php.net:/repository
PHPMOD=php4
ZENDMOD=Zend
TSRMMOD=TSRM
Expand Down

0 comments on commit 85682d5

Please sign in to comment.