]> git.pld-linux.org Git - packages/php.git/blobdiff - php-branch.sh
soap.wsdl_cache_dir="/var/cache/php"
[packages/php.git] / php-branch.sh
index cabdc7d2abf38cb87793d4346c156f5a6642a57e..d9f5fbd15feefcf7cb4b7dab8a00adda3da2fb3d 100644 (file)
@@ -1,8 +1,9 @@
 #!/bin/sh
 set -e
 svn=http://svn.php.net/repository/php/php-src
-tag=php_5_2_11
-branch=PHP_5_2
+tag=php_5_3_2
+branch=PHP_5_3
+out=php-branch.diff
 
 d=$-
 filter() {
@@ -14,11 +15,11 @@ filter() {
 old=$svn/tags/$tag
 new=$svn/branches/$branch
 echo >&2 "Running diff: $old -> $new"
-LC_ALL=C svn diff --old=$old --new=$new | filter > php-branch.diff.tmp
+LC_ALL=C svn diff --old=$old --new=$new | filter > $out.tmp
 
-if cmp -s php-branch.diff{,.tmp}; then
+if cmp -s $out{,.tmp}; then
        echo >&2 "No new diffs..."
-       rm -f php-branch.diff.tmp
+       rm -f $out.tmp
        exit 0
 fi
-mv -f php-branch.diff{.tmp,}
+mv -f $out{.tmp,}
This page took 0.069419 seconds and 4 git commands to generate.