From 8ab33a4d13a69285c6c2853444fb56f8de82ba82 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Mon, 15 May 2000 16:02:43 +0000 Subject: Use "mkdir -p" instead of "test -d || mkdir" where possible --- ext/java/Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ext/java') diff --git a/ext/java/Makefile.in b/ext/java/Makefile.in index 7d8960a34f..2a980157d2 100644 --- a/ext/java/Makefile.in +++ b/ext/java/Makefile.in @@ -14,8 +14,7 @@ make_shared = yes include $(top_srcdir)/build/dynlib.mk php_java.jar : reflect.java - @test -d net || mkdir net - @test -d net/php || mkdir net/php + $(mkinstalldirs) net/php @cp $(srcdir)/reflect.java net/php @echo library=php_java>net/php/reflect.properties javac net/php/reflect.java -- cgit v1.2.1