1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix path printing in ext_skel (#7387)

This commit is contained in:
hassan
2021-08-19 09:43:32 +02:00
committed by GitHub
parent 1440d15e00
commit 7e84b1ee00

View File

@@ -140,7 +140,7 @@ function print_success() {
printf('%1$sSuccess. The extension is now ready to be compiled. To do so, use the%s', PHP_EOL);
printf('following steps:%1$s%1$s', PHP_EOL);
printf('cd /path/to/php-src/ext/%s%s', $options['ext'], PHP_EOL);
printf('cd %s%s%s', $options['dir'], $options['ext'], PHP_EOL);
printf('phpize%s', PHP_EOL);
printf('%sconfigure%s', $file_prefix, PHP_EOL);
printf('%smake%2$s%2$s', $make_prefix, PHP_EOL);