mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Fix for compatibility.
This commit is contained in:
parent
028cf1a368
commit
63a48afcd5
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ if test "$1" = "--copy"; then
|
||||||
automake_flags=--copy
|
automake_flags=--copy
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! test -d libzend; then
|
if test ! -d libzend; then
|
||||||
if test -d ../libzend; then
|
if test -d ../libzend; then
|
||||||
echo "buildconf: linking ../libzend to ./libzend"
|
echo "buildconf: linking ../libzend to ./libzend"
|
||||||
ln -s ../libzend .
|
ln -s ../libzend .
|
||||||
|
@ -80,7 +80,7 @@ if ! test -d libzend; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if ! test -d TSRM; then
|
if test ! -d TSRM; then
|
||||||
if test -d ../TSRM; then
|
if test -d ../TSRM; then
|
||||||
echo "buildconf: linking ../TSRM to ./TSRM"
|
echo "buildconf: linking ../TSRM to ./TSRM"
|
||||||
ln -s ../TSRM .
|
ln -s ../TSRM .
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue