summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-08-21 19:11:53 +0200
committerAnatol Belski <ab@php.net>2015-08-21 19:11:53 +0200
commitac2f6ddd4f9d42156ab47f8d83448a418696b42d (patch)
tree9fe5c1b22129cf629248f39075325650734a6875 /build
parent5ed1b70841e7f1652814a454efe1d24762cc0fde (diff)
downloadphp-git-ac2f6ddd4f9d42156ab47f8d83448a418696b42d.tar.gz
here string isn't supported by every shell
Diffstat (limited to 'build')
-rw-r--r--build/genif.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/genif.sh b/build/genif.sh
index dab0be0fac..e2bc6ac89d 100644
--- a/build/genif.sh
+++ b/build/genif.sh
@@ -24,7 +24,7 @@ cd $srcdir
module_ptrs="$extra_module_ptrs`echo $@ | $awk -f ./build/order_by_dep.awk`"
for ext in ${1+"$@"} ; do
- ext_dir=`cut -d ';' -f 2 <<< "$ext"`
+ ext_dir=`echo "$ext" | cut -d ';' -f 2`
header_list="$header_list $ext_dir/*.h*"
done