diff options
author | Scott MacVicar <scottmac@php.net> | 2011-08-09 18:12:06 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2011-08-09 18:12:06 +0000 |
commit | 0c83631303de37ff5c6a7baaebe7f3d37046dfdf (patch) | |
tree | 776c741715263dd22dfd9f4c7a7a152105f6a8f7 /build | |
parent | 1e960014c11fb02302636761e0a57846d7811ec1 (diff) | |
download | php-git-0c83631303de37ff5c6a7baaebe7f3d37046dfdf.tar.gz |
Fix building of pure C++ extensions as static
Diffstat (limited to 'build')
-rw-r--r-- | build/genif.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/genif.sh b/build/genif.sh index 61d1f00454..14e19b7d9a 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 - header_list="$header_list ext/$ext/*.h" + header_list="$header_list ext/$ext/*.h*" done includes=`$awk -f ./build/print_include.awk $header_list` |