Don't override LIB*DIR variables from src.libnames.mk.

In some cases switch to the LIB*SRCDIR value.

These recently were defined in r291327 and r291619.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery
2015-12-01 22:20:04 +00:00
parent de52e5bdca
commit 3c89d6b0e3
10 changed files with 45 additions and 48 deletions
+3 -3
View File
@@ -3,12 +3,12 @@
#
OPENBSMDIR= ${.CURDIR}/../../contrib/openbsm
LIBBSMDIR= ${OPENBSMDIR}/libbsm
_LIBBSMDIR= ${OPENBSMDIR}/libbsm
LIB= bsm
SHLIB_MAJOR= 3
.PATH: ${LIBBSMDIR}
.PATH: ${_LIBBSMDIR}
.PATH: ${OPENBSMDIR}/bsm
.PATH: ${OPENBSMDIR}/man
@@ -31,7 +31,7 @@ SRCS= bsm_audit.c \
#
# Must use BSM include files from within the contrib area, not the system.
#
CFLAGS+= -I${OPENBSMDIR} -I${LIBBSMDIR}
CFLAGS+= -I${OPENBSMDIR} -I${_LIBBSMDIR}
WARNS?= 1