diff options
author | wpaul <wpaul@FreeBSD.org> | 1997-07-14 19:57:50 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1997-07-14 19:57:50 +0000 |
commit | f99d6c64a87ae752fb22ea9e0b5bf2334f96990e (patch) | |
tree | d674684a8e16234f5ab88615ec09ee3323de04e2 | |
parent | 75986f527f4e8b98585ec3e44b27e1c8ec8687b5 (diff) | |
download | FreeBSD-src-f99d6c64a87ae752fb22ea9e0b5bf2334f96990e.zip FreeBSD-src-f99d6c64a87ae752fb22ea9e0b5bf2334f96990e.tar.gz |
Unbreak this file some more:
CFLAGS=+-I${.CURDIR}/../../sys -> CFLAGS+= -I${.CURDIR}/../../sys
Asked about on BSDnet:#FreeBSD by: philw@dream.webmaster.com (Phillip White)
-rw-r--r-- | usr.sbin/pciconf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pciconf/Makefile b/usr.sbin/pciconf/Makefile index 47a11dc..b608668 100644 --- a/usr.sbin/pciconf/Makefile +++ b/usr.sbin/pciconf/Makefile @@ -2,6 +2,6 @@ PROG= pciconf MAN8= pciconf.8 -CFLAGS=+-I${.CURDIR}/../../sys +CFLAGS+= -I${.CURDIR}/../../sys .include <bsd.prog.mk> |