summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2005-05-21 18:42:39 +0000
committerRasmus Lerdorf <rasmus@php.net>2005-05-21 18:42:39 +0000
commit4688093cdc9d6847b2eeb14e159bcab8bae4cecd (patch)
tree249568e741ac74917a66d01c0852119cf501e87e
parentc1ef105535f976ac7e9122e552524b33e13bb68b (diff)
downloadphp-git-4688093cdc9d6847b2eeb14e159bcab8bae4cecd.tar.gz
Avoid syntax errors on some operating systems
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 75dedace14..683304e57f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2363,7 +2363,7 @@ AC_DEFUN([PHP_INSTALL_HEADERS],[
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"