diff options
author | Warner Losh <imp@FreeBSD.org> | 2017-03-12 18:58:44 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2017-03-12 18:58:44 +0000 |
commit | a35f04fba2ebb8f86d4cbdc710c89a094572b08e (patch) | |
tree | 6d7834512c1ccea38c53d829131105485c884751 /usr.bin/mkesdb_static | |
parent | e3f87f6c705552b9aaf2cc10ec687f330c0ebe6a (diff) | |
download | src-a35f04fba2ebb8f86d4cbdc710c89a094572b08e.tar.gz src-a35f04fba2ebb8f86d4cbdc710c89a094572b08e.zip |
Adopt SRCTOP in usr.bin
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo
over ${.CURDIR}/../foo for paths in Makefiles.
Differential Revision: https://reviews.freebsd.org/D9932
Sponsored by: Netflix
Silence on: arch@ (twice)
Notes
Notes:
svn path=/head/; revision=315170
Diffstat (limited to 'usr.bin/mkesdb_static')
-rw-r--r-- | usr.bin/mkesdb_static/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mkesdb_static/Makefile b/usr.bin/mkesdb_static/Makefile index 9ce020920808..0f7ad41bb98d 100644 --- a/usr.bin/mkesdb_static/Makefile +++ b/usr.bin/mkesdb_static/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../lib/libc/iconv ${.CURDIR}/../mkesdb +.PATH: ${SRCTOP}/lib/libc/iconv ${SRCTOP}/usr.bin/mkesdb PROG= mkesdb_static SRCS= citrus_bcs.c citrus_db_factory.c citrus_db_hash.c \ @@ -11,7 +11,7 @@ NO_WMISSING_VARIABLE_DECLARATIONS= build-tools: mkesdb_static -.include "${.CURDIR}/../mkesdb/Makefile.inc" +.include "${SRCTOP}/usr.bin/mkesdb/Makefile.inc" .include <bsd.prog.mk> ${PROG}: ${BUILD_TOOLS_META} |