wez Thu Feb 12 12:58:54 2004 EDT
Modified files:
/php-src/win32/build Makefile mkdist.php
Log:
name the pecl bundle pecl-foo instead of php-foo-pecl.
http://cvs.php.net/diff.php/php-src/win32/build/Makefile?r1=1.20&r2=1.21&ty=u
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.20 php-src/win32/build/Makefile:1.21
--- php-src/win32/build/Makefile:1.20 Thu Feb 12 08:01:14 2004
+++ php-src/win32/build/Makefile Thu Feb 12 12:58:52 2004
@@ -14,7 +14,7 @@
# | Author: Wez Furlong <[EMAIL PROTECTED]> |
# +----------------------------------------------------------------------+
#
-# $Id: Makefile,v 1.20 2004/02/12 13:01:14 wez Exp $
+# $Id: Makefile,v 1.21 2004/02/12 17:58:52 wez Exp $
# This is the makefile template for the win32 build
CC="$(CL)"
@@ -90,14 +90,14 @@
build-dist: $(BUILD_DIR)\deplister.exe
-rmdir /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
- -rmdir /s /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-pecl
+ -rmdir /s /q $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)
-del /f /q $(BUILD_DIR)\php-$(PHP_VERSION_STRING).zip
$(BUILD_DIR)\php.exe -n win32/build/mkdist.php "$(BUILD_DIR)" "$(PHPDLL)"
"$(SAPI_TARGETS)" "$(EXT_TARGETS)" "$(PECL_TARGETS)" "$(SNAPSHOT_TEMPLATE)"
cd $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
-$(ZIP) -9 -r ..\php-$(PHP_VERSION_STRING).zip .
cd ..\..
- cd $(BUILD_DIR)\php-$(PHP_VERSION_STRING)-pecl
- -$(ZIP) -9 -r ..\php-$(PHP_VERSION_STRING)-pecl.zip .
+ cd $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)
+ -$(ZIP) -9 -r ..\pecl-$(PHP_VERSION_STRING).zip .
cd ..\..
dist: all build-dist
http://cvs.php.net/diff.php/php-src/win32/build/mkdist.php?r1=1.7&r2=1.8&ty=u
Index: php-src/win32/build/mkdist.php
diff -u php-src/win32/build/mkdist.php:1.7 php-src/win32/build/mkdist.php:1.8
--- php-src/win32/build/mkdist.php:1.7 Fri Jan 9 08:17:58 2004
+++ php-src/win32/build/mkdist.php Thu Feb 12 12:58:52 2004
@@ -1,4 +1,4 @@
-<?php # $Id: mkdist.php,v 1.7 2004/01/09 13:17:58 wez Exp $
+<?php # $Id: mkdist.php,v 1.8 2004/02/12 17:58:52 wez Exp $
/* piece together a windows binary distro */
$build_dir = $argv[1];
@@ -13,7 +13,7 @@
echo "Making dist for $build_dir\n";
$dist_dir = $build_dir . "/php-" . phpversion();
-$pecl_dir = $dist_dir . "-pecl";
+$pecl_dir = $build_dir . "/pecl-" . phpversion();
@mkdir($dist_dir);
@mkdir("$dist_dir/ext");
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php