diff options
author | 2007-07-08 00:17:21 +0000 | |
---|---|---|
committer | 2007-07-08 00:17:21 +0000 | |
commit | a07997ce45d2710595a79113075ef589123fca58 (patch) | |
tree | 697eba4cda0ea4db30059b90147e6d15445de34f | |
parent | Restore missing '(' to allow successful compilation. Bad pyr@. (diff) | |
download | wireguard-openbsd-a07997ce45d2710595a79113075ef589123fca58.tar.xz wireguard-openbsd-a07997ce45d2710595a79113075ef589123fca58.zip |
As pointed out by Mickey, "-I/usr/includes" is not required for
successful compilation of assembler or generating microcode.
-rw-r--r-- | sys/dev/microcode/aic7xxx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/microcode/aic7xxx/Makefile b/sys/dev/microcode/aic7xxx/Makefile index 7a34c83c3f7..7178f24d034 100644 --- a/sys/dev/microcode/aic7xxx/Makefile +++ b/sys/dev/microcode/aic7xxx/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2007/04/05 23:41:20 drahn Exp $ +# $OpenBSD: Makefile,v 1.11 2007/07/08 00:17:21 krw Exp $ # $FreeBSD: src/sys/dev/aic7xxx/Makefile,v 1.6 1999/08/28 00:41:22 peter Exp $ PROG= aicasm @@ -21,7 +21,7 @@ CC=${HOSTCC} DEPENDFILE= .endif -CFLAGS+= -I/usr/include -I. -I${.CURDIR} +CFLAGS+= -I. -I${.CURDIR} YFLAGS= -d LFLAGS+= ${.TARGET:M*macro*:S/$(.TARGET)/-olex.yy.c/} ${.TARGET:M*macro*:S/$(.TARGET)/-Pmm/} NOMAN= noman |