diff options
author | 2003-07-05 17:02:55 +0000 | |
---|---|---|
committer | 2003-07-05 17:02:55 +0000 | |
commit | bae6b37967f91e896f9b42f53bf883e4c7a105bb (patch) | |
tree | a875893050a0e812d0fad995a1a5926e22a06828 | |
parent | protos (diff) | |
download | wireguard-openbsd-bae6b37967f91e896f9b42f53bf883e4c7a105bb.tar.xz wireguard-openbsd-bae6b37967f91e896f9b42f53bf883e4c7a105bb.zip |
do not make bad machine@ links
-rw-r--r-- | sys/arch/i386/stand/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/Makefile.inc b/sys/arch/i386/stand/Makefile.inc index 4d6274e7534..32c3a543de6 100644 --- a/sys/arch/i386/stand/Makefile.inc +++ b/sys/arch/i386/stand/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.31 2003/04/17 03:43:13 drahn Exp $ +# $OpenBSD: Makefile.inc,v 1.32 2003/07/05 17:02:55 deraadt Exp $ CFLAGS=${DEBUG} -Os -Wall -Werror CFLAGS+= -fno-stack-protector @@ -29,7 +29,7 @@ SACFLAGS+=-nostdinc -fno-builtin -fpack-struct .if !make(libdep) && !make(sadep) && !make(salibdir) && !make(kernlibdir) && !make(obj) .BEGIN: - @([ -h machine ] || ln -s $(S)/arch/i386/include machine) + @([ X$(S) == X -o -h machine ] || ln -s $(S)/arch/i386/include machine) .endif |