sniper Mon Jan 27 21:49:35 2003 EDT
Removed files:
/php4 makedist.ZendEngine2
Modified files:
/php4 makedist
Log:
- Removed unnecessary makedist.ZendEngine2
- Modified makedist to use php5 CVS module (alias)
Index: php4/makedist
diff -u php4/makedist:1.28 php4/makedist:1.29
--- php4/makedist:1.28 Thu Oct 10 15:01:34 2002
+++ php4/makedist Mon Jan 27 21:49:34 2003
@@ -9,7 +9,7 @@
# where <package> is the package name and the CVS module
# and <version> s the version number with underscores instead of dots.
#
-# For example: cvs tag php_3_0a1
+# For example: cvs tag php_5_0_1
#
# The distribution ends up in a .tar.gz file that contains the distribution
# in a directory called <package>-<version>. The distribution contains all
@@ -24,7 +24,7 @@
#
# Written by Stig Bakken <[EMAIL PROTECTED]> 1997-05-28.
#
-# $Id: makedist,v 1.28 2002/10/10 19:01:34 derick Exp $
+# $Id: makedist,v 1.29 2003/01/28 02:49:34 sniper Exp $
#
if test "$#" != "2"; then
@@ -45,10 +45,7 @@
IFS="$old_IFS"
PHPROOT=:pserver:[EMAIL PROTECTED]:/repository
-ZENDROOT=:pserver:[EMAIL PROTECTED]:/repository
-PHPMOD=php4
-ZENDMOD=Zend
-TSRMMOD=TSRM
+PHPMOD=php5
LT_TARGETS='ltconfig ltmain.sh config.guess config.sub'
if echo '\c' | grep -s c >/dev/null 2>&1
@@ -79,27 +76,27 @@
CVSVER=`echo $VER | sed -e 's/[\.\-]/_/g'`
# CVS release tag
-CVSTAG=${PKG}_$CVSVER
+if test "$VER" != "HEAD"; then
+ CVSTAG=${PKG}_$CVSVER
+else
+ CVSTAG=HEAD
+fi
if test ! -d $DIRPATH; then
mkdir -p $DIRPATH || exit 2
fi
-#cd $DIRPATH || exit 3
-
# Export PHP
$ECHO_N "makedist: exporting tag '$CVSTAG' from '$PHPMOD'...$ECHO_C"
cvs -z 9 -d $PHPROOT export -d $DIR -r $CVSTAG $PHPMOD || exit 4
echo ""
-# Export the other modules inside the PHP directory
-cd $DIR || exit 5
-
# remove CVS stuff...
+cd $DIR || exit 5
find . \( \( -name CVS -type d \) -o -name .cvsignore \) -exec rm -rf {} \;
# The full ChangeLog is available separately from lxr.php.net
-rm ChangeLog*
+rm -f ChangeLog*
# hide away our own versions of libtool-generated files
for i in $LT_TARGETS; do
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php