diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-11 05:52:13 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-11 05:52:13 +0000 |
commit | fbee5714f53d1a35972210733c8af3b6006ffba7 (patch) | |
tree | 81bb7c37c655969494f4f703362de423ec96eba9 | |
parent | 5174a5fe9de3683d0b43dae55acf3d76209c496d (diff) | |
download | FreeBSD-src-fbee5714f53d1a35972210733c8af3b6006ffba7.zip FreeBSD-src-fbee5714f53d1a35972210733c8af3b6006ffba7.tar.gz |
MFC r312456:
Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
This implifies pathing in make/displayed output
-rw-r--r-- | lib/libarchive/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libarchive/Makefile b/lib/libarchive/Makefile index ffb2e97..2cf1633 100644 --- a/lib/libarchive/Makefile +++ b/lib/libarchive/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ .include <bsd.own.mk> -LIBARCHIVEDIR= ${.CURDIR}/../../contrib/libarchive +LIBARCHIVEDIR= ${SRCTOP}/contrib/libarchive LIB= archive DPADD= ${LIBZ} ${LIBBZ2} ${LIBLZMA} ${LIBPTHREAD} ${LIBBSDXML} |