diff options
author | obrien <obrien@FreeBSD.org> | 2000-05-15 16:52:57 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-05-15 16:52:57 +0000 |
commit | 20bcb4fdbca0cd121abfd30f8bf16db837c89cc4 (patch) | |
tree | 655691e604186ae96e483bfc5eec476bdfaf33a0 /secure/lib | |
parent | fc2bd3426959c43f1a3a68da83e6ec04fd33530e (diff) | |
download | FreeBSD-src-20bcb4fdbca0cd121abfd30f8bf16db837c89cc4.zip FreeBSD-src-20bcb4fdbca0cd121abfd30f8bf16db837c89cc4.tar.gz |
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.
Diffstat (limited to 'secure/lib')
-rw-r--r-- | secure/lib/libcrypto/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc index 8b0ec13..61b2819 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} |