sniper          Sun Jun 19 20:20:46 2005 EDT

  Modified files:              
    /php-src    acinclude.m4 
  Log:
  fix PHP_INSTALL_HEADERS() macro when 2 params are used
  
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.319&r2=1.320&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.319 php-src/acinclude.m4:1.320
--- php-src/acinclude.m4:1.319  Mon Jun 13 22:18:44 2005
+++ php-src/acinclude.m4        Sun Jun 19 20:20:45 2005
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: acinclude.m4,v 1.319 2005/06/14 02:18:44 sniper Exp $
+dnl $Id: acinclude.m4,v 1.320 2005/06/20 00:20:45 sniper Exp $
 dnl
 dnl This file contains local autoconf functions.
 dnl
@@ -2362,10 +2362,10 @@
     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"
+        INSTALL_EXT_HEADERS="$INSTALL_EXT_HEADERS $header_path/$header_file"
       ])
     done 
   fi

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

Reply via email to