diff options
| author | Rasmus Lerdorf <rasmus@php.net> | 2005-05-21 18:42:39 +0000 |
|---|---|---|
| committer | Rasmus Lerdorf <rasmus@php.net> | 2005-05-21 18:42:39 +0000 |
| commit | 4688093cdc9d6847b2eeb14e159bcab8bae4cecd (patch) | |
| tree | 249568e741ac74917a66d01c0852119cf501e87e /acinclude.m4 | |
| parent | c1ef105535f976ac7e9122e552524b33e13bb68b (diff) | |
| download | php-git-4688093cdc9d6847b2eeb14e159bcab8bae4cecd.tar.gz | |
Avoid syntax errors on some operating systems
Diffstat (limited to 'acinclude.m4')
| -rw-r--r-- | acinclude.m4 | 2 |
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" |
