From f80c5c4a34499f0ea751e5eb388d6c79fd053192 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 15 May 2000 16:52:57 +0000 Subject: Use unadorned `mkdir -p', removing the "test ... ||". There are sometimes problems with "&&" and "||" in the `make -j' case, as it appears multiple processes may process parts of the execution line. --- secure/lib/libcrypto/Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'secure') diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index 8b0ec13e4914..61b28193975d 100644 --- a/secure/lib/libcrypto/Makefile.inc +++ b/secure/lib/libcrypto/Makefile.inc @@ -30,10 +30,10 @@ buildinf.h: openssl/opensslconf.h openssl/headers-copied echo "#endif" ) > ${.TARGET} openssl/opensslconf.h: ../libcrypto/opensslconf-${MACHINE_ARCH}.h - @test -d openssl || mkdir -p openssl + @mkdir -p openssl cp ${.OODATE} ${.TARGET} openssl/headers-copied: - @test -d openssl || mkdir -p openssl + @mkdir -p openssl ${INSTALL} ${COPY} -m 444 ${CRYPTO_HDRS} ${EXTRA_HDRS} openssl @touch ${.TARGET} -- cgit v1.3