diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-01-21 20:11:40 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-01-21 20:11:40 +0000 |
commit | 9f5625a6c5f75cdc10e4e8a3057875594a8cc610 (patch) | |
tree | 17b7f3b80201b1e7763bb7a66aae3689a9a82a07 /lib | |
parent | 01e3bccd0b374682cf149478779135deab5714db (diff) | |
download | FreeBSD-src-9f5625a6c5f75cdc10e4e8a3057875594a8cc610.zip FreeBSD-src-9f5625a6c5f75cdc10e4e8a3057875594a8cc610.tar.gz |
Specify the system directory for which we put in our include path
as a separate line so we can override it on the command line if
we need to.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcam/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcam/Makefile b/lib/libcam/Makefile index 2258964..86563b9 100644 --- a/lib/libcam/Makefile +++ b/lib/libcam/Makefile @@ -34,6 +34,7 @@ MLINKS+=cam.3 cam_open_device.3 \ .PATH: ${.CURDIR}/../../sys/cam/scsi ${.CURDIR}/../../sys/cam -CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../../sys +SDIR= ${.CURDIR}/../../sys +CFLAGS+=-I${.CURDIR} -I${SDIR} .include <bsd.lib.mk> |