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/libsa/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/libsa/Makefile.inc')
-rw-r--r-- | sys/lib/libsa/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/Makefile.inc b/sys/lib/libsa/Makefile.inc index d0a79cba785..aa253fcc9b8 100644 --- a/sys/lib/libsa/Makefile.inc +++ b/sys/lib/libsa/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:23 grr Exp $ # $NetBSD: Makefile.inc,v 1.5 1996/09/30 16:01:18 ws Exp $ # # NOTE: $S must correspond to the top of the 'sys' tree @@ -37,5 +37,5 @@ depend:: .NOTMAIN __always_make_salib @${SAMAKE} depend __always_make_salib: .NOTMAIN - @([ -d ${SADST} ] || mkdir -p ${SADST}) + -mkdir -p ${SADST}) |