Need to check if it exists first.

This commit is contained in:
Andrey Hristov 1999-06-17 15:17:17 +00:00
parent a22d6b980e
commit 14463b1ba8

View file

@ -18,9 +18,9 @@ done
if test "$recurse" = "yes"; then if test "$recurse" = "yes"; then
cwd=`pwd` 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 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
fi fi