mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed bug #24207: phpize wrong exit code
This commit is contained in:
parent
abd52d4efc
commit
c43d558700
1 changed files with 4 additions and 4 deletions
|
@ -38,10 +38,10 @@ sed \
|
||||||
|
|
||||||
touch install-sh mkinstalldirs missing
|
touch install-sh mkinstalldirs missing
|
||||||
|
|
||||||
aclocal
|
aclocal || exit 1
|
||||||
autoconf
|
autoconf || exit 1
|
||||||
autoheader
|
autoheader || exit 1
|
||||||
libtoolize -f -c
|
libtoolize -f -c || exit 1
|
||||||
|
|
||||||
# dumping API NOs:
|
# dumping API NOs:
|
||||||
PHP_API_VERSION=`grep -E '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`
|
PHP_API_VERSION=`grep -E '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue