wez             Thu Aug  4 12:57:18 2005 EDT

  Modified files:              
    /php-src/scripts    phpize.in 
  Log:
  test -e doesn't work on solaris
  
  
http://cvs.php.net/diff.php/php-src/scripts/phpize.in?r1=1.25&r2=1.26&ty=u
Index: php-src/scripts/phpize.in
diff -u php-src/scripts/phpize.in:1.25 php-src/scripts/phpize.in:1.26
--- php-src/scripts/phpize.in:1.25      Wed Jun 15 13:13:39 2005
+++ php-src/scripts/phpize.in   Thu Aug  4 12:57:15 2005
@@ -35,7 +35,7 @@
 {
   echo "Cleaning.."
   for i in $CLEAN_FILES; do
-    test -e $i && rm -rf $i
+    test -f $i && rm -rf $i
   done
 }
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to