From: Andrey Hristov Date: Thu, 17 Jun 1999 15:17:17 +0000 (+0000) Subject: Need to check if it exists first. X-Git-Tag: BEFORE_REMOVING_GC_STEP1~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=14463b1ba8c83447575f8d51adc5a183863a798c;p=php Need to check if it exists first. --- diff --git a/configure.in.in b/configure.in.in index 7fd049642d..abc657462c 100644 --- a/configure.in.in +++ b/configure.in.in @@ -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