From: Kalle Sommer Nielsen Date: Sun, 23 Jul 2017 09:28:27 +0000 (+0200) Subject: Fix ext_skel's help, the arguments passed are using a space, not an equal sign for... X-Git-Tag: php-7.3.0alpha1~1826 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=216d711224194ab2d50e473d039eb1762c3fb5f7;p=php Fix ext_skel's help, the arguments passed are using a space, not an equal sign for values --- diff --git a/ext/ext_skel.php b/ext/ext_skel.php index 4528a10f50..b12c1af57d 100644 --- a/ext/ext_skel.php +++ b/ext/ext_skel.php @@ -30,15 +30,15 @@ function error($message) { /* {{{ print_help */ function print_help() { - printf('php ext_skel.php --ext= [--experimental] [--author=]%s', PHP_EOL); - printf(' [--dir=] [--std] [--onlyunix]%s', PHP_EOL); + printf('php ext_skel.php --ext [--experimental] [--author ]%s', PHP_EOL); + printf(' [--dir ] [--std] [--onlyunix]%s', PHP_EOL); printf(' [--onlywindows] [--help]%1$s%1$s', PHP_EOL); - printf(' --ext= The name of the extension defined as %s', PHP_EOL); + printf(' --ext The name of the extension defined as %s', PHP_EOL); printf(' --experimental Passed if this extension is experimental, this creates%s', PHP_EOL); printf(' the EXPERIMENTAL file in the root of the extension%s', PHP_EOL); - printf(' --author= Your name, this is used if --header is passed and%s', PHP_EOL); + printf(' --author Your name, this is used if --header is passed and%s', PHP_EOL); printf(' for the CREDITS file%s', PHP_EOL); - printf(' --dir= Path to the directory for where extension should be%s', PHP_EOL); + printf(' --dir Path to the directory for where extension should be%s', PHP_EOL); printf(' created. Defaults to the directory of where this script%s', PHP_EOL); printf(' lives%s', PHP_EOL); printf(' --std If passed, the standard header and vim rules footer used%s', PHP_EOL);