diff options
author | think <microhuang@live.com> | 2016-08-23 17:03:07 +0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2016-11-26 15:32:08 -0800 |
commit | 162ff394a5640e9c1d8d846e004a632f2738c9d3 (patch) | |
tree | ffa39892fc1072f5cd9f2c8cb4ea35f33bf0ac5f | |
parent | c4ebe4da044f1a18d7012e8c64ce578d3bfba195 (diff) | |
download | php-git-162ff394a5640e9c1d8d846e004a632f2738c9d3.tar.gz |
awk: syntax error
awk version 20070501
-rwxr-xr-x | ext/skeleton/create_stubs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/skeleton/create_stubs b/ext/skeleton/create_stubs index a3f3d196b3..fe79d6a29c 100755 --- a/ext/skeleton/create_stubs +++ b/ext/skeleton/create_stubs @@ -253,7 +253,7 @@ END { if (fetchargs) print fetchargs > stubfile if (resources) { print resources > stubfile - if (!stubs) print "" > extname "/function_warning" + if (!stubs) print "" > ( extname "/function_warning" ) } if (!i_know_what_to_do_shut_up_i_dont_need_your_help_mode) { print "\tphp_error(E_WARNING, \"" funcs[i] ": not yet implemented\");" > stubfile @@ -264,8 +264,8 @@ END { h_stubs = h_stubs "PHP_FUNCTION(" funcs[i] ");\n" c_stubs = c_stubs "\tPHP_FE(" funcs[i] ",\tNULL)\n" } else { - print "PHP_FUNCTION(" funcs[i] ");" > extname "/function_declarations" - print "\tPHP_FE(" funcs[i] ",\tNULL)" > extname "/function_entries" + print "PHP_FUNCTION(" funcs[i] ");" > ( extname "/function_declarations" ) + print "\tPHP_FE(" funcs[i] ",\tNULL)" > ( extname "/function_entries" ) } if (xml) print xmlstr > xmldoc |