summaryrefslogtreecommitdiff
path: root/dynlib.m4
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-12 07:37:42 +0000
committerSascha Schumann <sas@php.net>2000-05-12 07:37:42 +0000
commit23dfe91b60d7b76c52eb23920588b5fd824bb650 (patch)
tree1b9151a071df0b2d949734dcea9305220f9d1a7e /dynlib.m4
parentf3ac2131208d516368c12aa6f6f067633c9cfa8f (diff)
downloadphp-git-23dfe91b60d7b76c52eb23920588b5fd824bb650.tar.gz
Remove directory test when creating directories using mkdir -p
Diffstat (limited to 'dynlib.m4')
-rw-r--r--dynlib.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/dynlib.m4 b/dynlib.m4
index fb3c70a701..77c607c25c 100644
--- a/dynlib.m4
+++ b/dynlib.m4
@@ -35,7 +35,7 @@ AC_DEFUN(LIB_BUILD,[
lib_makefile="$1/libs.mk"
lib_target=""
- test -d $1 || $php_shtool mkdir -p $1
+ $php_shtool mkdir -p $1
cat >$lib_makefile<<EOF
LTLIBRARY_OBJECTS = \$(LTLIBRARY_SOURCES:.c=.lo)
LTLIBRARY_SHARED_OBJECTS = \$(LTLIBRARY_OBJECTS:.lo=.slo)