sixd                                     Tue, 06 Mar 2012 21:30:59 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=323973

Log:
Make "buildconf --force" more robust, per IRC chat.  Not backported to 5.3 to 
avoid destabilization.

Changed paths:
    U   php/php-src/branches/PHP_5_4/buildconf
    U   php/php-src/trunk/buildconf

Modified: php/php-src/branches/PHP_5_4/buildconf
===================================================================
--- php/php-src/branches/PHP_5_4/buildconf      2012-03-06 20:57:56 UTC (rev 
323972)
+++ php/php-src/branches/PHP_5_4/buildconf      2012-03-06 21:30:59 UTC (rev 
323973)
@@ -32,7 +32,12 @@
   echo "use buildconf --force to override this check."
   exit 1
 fi
-
+
+if test "$devok" = "1"; then
+  echo "Removing configure caches"
+  rm -rf autom4te.cache config.cache
+fi
+
 rm -f generated_lists

 if test "$debug" = "yes"; then

Modified: php/php-src/trunk/buildconf
===================================================================
--- php/php-src/trunk/buildconf 2012-03-06 20:57:56 UTC (rev 323972)
+++ php/php-src/trunk/buildconf 2012-03-06 21:30:59 UTC (rev 323973)
@@ -32,7 +32,12 @@
   echo "use buildconf --force to override this check."
   exit 1
 fi
-
+
+if test "$devok" = "1"; then
+  echo "Removing configure caches"
+  rm -rf autom4te.cache config.cache
+fi
+
 rm -f generated_lists

 if test "$debug" = "yes"; then

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

Reply via email to