diff options
author | 2002-08-05 22:42:12 +0000 | |
---|---|---|
committer | 2002-08-05 22:42:12 +0000 | |
commit | 4f872a2c1b0715344d9425ae896e8557c7dcfa4c (patch) | |
tree | 67a713b46dc64cde215f7747a139b68ba7c3e3aa /lib/libc/sys | |
parent | Force acceleration to be turned off if we encounter an old hardware (diff) | |
download | wireguard-openbsd-4f872a2c1b0715344d9425ae896e8557c7dcfa4c.tar.xz wireguard-openbsd-4f872a2c1b0715344d9425ae896e8557c7dcfa4c.zip |
Fix brain blackout.
Pointed out byb miod@.
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index a0cf4f4a2d1..89f0f848e18 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.55 2002/08/05 15:31:12 art Exp $ +# $OpenBSD: Makefile.inc,v 1.56 2002/08/05 22:42:12 art Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -6,7 +6,7 @@ .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/sys ${LIBCSRCDIR}/sys # for now, only arch's below have weak aliases enabled -.if ${MACHINE_ARCH} != "i386" || ${ELF_TOOLCHAIN} == "yes" +.if ${MACHINE_ARCH} != "i386" && ${ELF_TOOLCHAIN} != "yes" CFLAGS+= -D_NO_WEAK_ALIASES .endif |