diff options
author | Adam Harvey <aharvey@php.net> | 2014-05-01 11:21:34 -0700 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2014-05-01 11:22:20 -0700 |
commit | 941c39bd06aac1b7d3ce2cf3189144875f216b47 (patch) | |
tree | 2632ad27c5effd0bc3feccaba262da951194c8e4 | |
parent | 1c13ad7c0eccc9f560722e3bb218dbadceda5ecc (diff) | |
download | php-git-941c39bd06aac1b7d3ce2cf3189144875f216b47.tar.gz |
Use the right path for the suggested PHP invocation in ext_skel.
Fixes bug #67160 (ext_skel outputs incorrect information).
-rwxr-xr-x | ext/ext_skel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ext_skel b/ext/ext_skel index 2492bf73da..650dae1e57 100755 --- a/ext/ext_skel +++ b/ext/ext_skel @@ -288,7 +288,7 @@ To use your new extension, you will have to execute the following steps: 3. $ ./buildconf 4. $ ./configure --[with|enable]-$extname 5. $ make -6. $ ./php -f ext/$extname/$extname.php +6. $ ./sapi/cli/php -f ext/$extname/$extname.php 7. $ vi ext/$extname/$extname.c 8. $ make |