forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sascha Schumann
committed
Jun 25, 2000
1 parent
c9fea52
commit 2573a50
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,14 +27,22 @@ | |
# $Id$ | ||
# | ||
|
||
#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" | ||
# exit 10 | ||
#fi | ||
#IFS="$old_IFS" | ||
if test "$#" != "2"; then | ||
echo "Usage: makedist <package> <version>" >&2 | ||
exit 1 | ||
fi | ||
|
||
PKG=$1 ; shift | ||
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" | ||
exit 10 | ||
fi | ||
IFS="$old_IFS" | ||
|
||
PHPROOT=:pserver:[email protected]:/repository | ||
ZENDROOT=:pserver:[email protected]:/repository | ||
|
@@ -52,14 +60,6 @@ else | |
ECHO_C='\c' | ||
fi | ||
|
||
if test "$#" != "2"; then | ||
echo "Usage: makedist <package> <version>" >&2 | ||
exit 1 | ||
fi | ||
|
||
PKG=$1 ; shift | ||
VER=$1 ; shift | ||
|
||
MY_OLDPWD=`pwd` | ||
|
||
# the destination .tar.gz file | ||
|