rasmus          Sat May 21 14:42:40 2005 EDT

  Modified files:              
    /php-src    acinclude.m4 
  Log:
  Avoid syntax errors on some operating systems
  
  
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.306&r2=1.307&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.306 php-src/acinclude.m4:1.307
--- php-src/acinclude.m4:1.306  Fri May  6 22:51:50 2005
+++ php-src/acinclude.m4        Sat May 21 14:42:39 2005
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: acinclude.m4,v 1.306 2005/05/07 02:51:50 sniper Exp $
+dnl $Id: acinclude.m4,v 1.307 2005/05/21 18:42:39 rasmus Exp $
 dnl
 dnl This file contains local autoconf functions.
 dnl
@@ -2363,7 +2363,7 @@
     done 
   else
     header_path=$1
-    for header_file in $2; do
+    for header_file in "$2"; do
       hp_hf="$header_path/$header_file"
       PHP_RUN_ONCE(INSTALLHEADERS, $hp_hf, [
         INSTALL_EXT_HEADERS="$INSTALL_EXT_HEADERS $hp_hf"

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

Reply via email to