diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-19 18:23:25 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-19 18:23:25 +0000 |
commit | 5f6abd9aa320913a706109d10357c6a8781bb023 (patch) | |
tree | e2288c9f7811d394727437ac6a6df5db18beb0a3 /sys/lib/libz/Makefile.inc | |
parent | bf8005adcfb58b3ee760f1d617bbc31a94c84c52 (diff) |
Fix a repeatbility problem associated with doing make cleandir of sys/lib/* -
mkdir fails if the destination already exists. It could be argued that
having make cleandir rm the directory would be appropriate, but there
really shouldn't be any dynamic fooling around with the directory structure.
Fixes PR sparc/231 by Marshal Midden, though probably MI.
Diffstat (limited to 'sys/lib/libz/Makefile.inc')
-rw-r--r-- | sys/lib/libz/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libz/Makefile.inc b/sys/lib/libz/Makefile.inc index e20d89e398f..7a1d98b3d1b 100644 --- a/sys/lib/libz/Makefile.inc +++ b/sys/lib/libz/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 1997/05/05 04:44:11 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.6 1997/06/19 18:23:24 grr Exp $ # $NetBSD: Makefile.inc,v 1.2 1997/01/23 22:29:09 cgd Exp $ # # Configuration variables (default values are below): @@ -68,4 +68,4 @@ dependzlib: .NOTMAIN __always_make_zlib @${ZMAKE} depend __always_make_zlib: .NOTMAIN - @mkdir -p ${ZDST} + -mkdir -p ${ZDST} |