diff options
| author | Sascha Schumann <sas@php.net> | 2000-05-15 16:02:43 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-05-15 16:02:43 +0000 |
| commit | 8ab33a4d13a69285c6c2853444fb56f8de82ba82 (patch) | |
| tree | 4fb320f0baf7173448327070a030c2ea9665067c /ext/java | |
| parent | 521e1d218ce05920e992cfb0e042cb1e8851a1cd (diff) | |
| download | php-git-8ab33a4d13a69285c6c2853444fb56f8de82ba82.tar.gz | |
Use "mkdir -p" instead of "test -d || mkdir" where possible
Diffstat (limited to 'ext/java')
| -rw-r--r-- | ext/java/Makefile.in | 3 |
1 files changed, 1 insertions, 2 deletions
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 |
