diff options
author | Richard Levitte <levitte@openssl.org> | 2002-07-17 13:33:02 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-07-17 13:33:02 +0000 |
commit | 6643f275e2f91a5ae0418d16497a77b7e58920bd (patch) | |
tree | f2f594093c9d0a937c33989cbbe575f8c720fb8c /util | |
parent | cd4c36adb8cf159a1ea86a3e0b1ff2f222016937 (diff) | |
download | openssl-new-6643f275e2f91a5ae0418d16497a77b7e58920bd.tar.gz |
Make mkdir failsafe in case the directories are already present
Diffstat (limited to 'util')
-rwxr-xr-x | util/mk1mf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl index 1f8b839e41..866629fe25 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -101,7 +101,7 @@ $out_def="out"; $inc_def="outinc"; $tmp_def="tmp"; -$mkdir="mkdir"; +$mkdir="-mkdir"; ($ssl,$crypto)=("ssl","crypto"); $ranlib="echo ranlib"; |