mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Need to check if it exists first.
This commit is contained in:
parent
a22d6b980e
commit
14463b1ba8
1 changed files with 2 additions and 2 deletions
|
@ -18,9 +18,9 @@ done
|
|||
|
||||
if test "$recurse" = "yes"; then
|
||||
cwd=`pwd`
|
||||
(set -x; mkdir -p libzend ; cd libzend; $cwd/$srcdir/libzend/configure --cache-file=$cwd/config.cache $@)
|
||||
(set -x; test -d libzend || mkdir -p libzend ; cd libzend; $cwd/$srcdir/libzend/configure --cache-file=$cwd/config.cache $@)
|
||||
if test "$threadsafe" = "yes"; then
|
||||
(set -x; mkdir -p TSRM; cd TSRM; $cwd/$srcdir/TSRM/configure --cache-file=$cwd/config.cache $@)
|
||||
(set -x; test -d libzend; mkdir -p TSRM; cd TSRM; $cwd/$srcdir/TSRM/configure --cache-file=$cwd/config.cache $@)
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue