diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-01 22:20:04 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-01 22:20:04 +0000 |
commit | 3c89d6b0e37f4c8fd151aa06bc7af33d74fb54b6 (patch) | |
tree | 776c9b339eb020689b024842cc56784cbe75e14d /gnu | |
parent | de52e5bdca088414f71d5faecfd7ccb42b4988d1 (diff) | |
download | src-3c89d6b0e37f4c8fd151aa06bc7af33d74fb54b6.tar.gz src-3c89d6b0e37f4c8fd151aa06bc7af33d74fb54b6.zip |
Notes
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/dtc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/dtc/Makefile b/gnu/usr.bin/dtc/Makefile index 7bf8fd52ffc1..cdbbf4bba211 100644 --- a/gnu/usr.bin/dtc/Makefile +++ b/gnu/usr.bin/dtc/Makefile @@ -3,8 +3,8 @@ .include <bsd.own.mk> DTCDIR= ${.CURDIR}/../../../contrib/dtc -LIBFDTDIR= ${.CURDIR}/../../../sys/contrib/libfdt -.PATH: ${DTCDIR} ${LIBFDTDIR} +_LIBFDTDIR= ${.CURDIR}/../../../sys/contrib/libfdt +.PATH: ${DTCDIR} ${_LIBFDTDIR} PROG= dtc @@ -14,7 +14,7 @@ SRCS= dtc.c checks.c fstree.c livetree.c treesource.c data.c \ fdt_sw.c fdt_wip.c ${DTCVERSIONFILE} WARNS?= 2 -CFLAGS+= -I. -I${.CURDIR} -I${DTCDIR} -I${LIBFDTDIR} +CFLAGS+= -I. -I${.CURDIR} -I${DTCDIR} -I${_LIBFDTDIR} VERSIONMAJ!= awk '/^VERSION =/ { print $$3 }' ${DTCDIR}/Makefile VERSIONMIN!= awk '/^PATCHLEVEL =/ { print $$3 }' ${DTCDIR}/Makefile |