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.
This commit is contained in:
David E. O'Brien 2000-05-15 16:52:57 +00:00
parent 9c854c8b44
commit f80c5c4a34
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=60609

View File

@ -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}