diff options
author | 1997-06-19 18:23:21 +0000 | |
---|---|---|
committer | 1997-06-19 18:23:21 +0000 | |
commit | 6fd75965d0c16d7e61542dccab95c6ff036b0cc0 (patch) | |
tree | 5f59e57723f0c6d87906c0ff1fd573eb8f666ee9 /sys/lib/libkern | |
parent | back out (diff) | |
download | wireguard-openbsd-6fd75965d0c16d7e61542dccab95c6ff036b0cc0.tar.xz wireguard-openbsd-6fd75965d0c16d7e61542dccab95c6ff036b0cc0.zip |
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/libkern')
-rw-r--r-- | sys/lib/libkern/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/Makefile.inc b/sys/lib/libkern/Makefile.inc index 497031862d4..a92377e9635 100644 --- a/sys/lib/libkern/Makefile.inc +++ b/sys/lib/libkern/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.7 1997/05/05 04:44:10 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.8 1997/06/19 18:23:21 grr Exp $ # $NetBSD: Makefile.inc,v 1.22 1996/09/30 15:54:35 ws Exp $ # # NOTE: $S must correspond to the top of the 'sys' tree @@ -49,4 +49,4 @@ depend:: .NOTMAIN __always_make_kernlib @${KERNMAKE} depend __always_make_kernlib: .NOTMAIN - @mkdir -p ${KERNDST} + -mkdir -p ${KERNDST} |