diff options
author | emaste <emaste@FreeBSD.org> | 2016-04-21 12:58:29 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-04-21 12:58:29 +0000 |
commit | 55c6dd387976111bbcfd088fe769dafa767021bc (patch) | |
tree | 0063aee2166157b20b3d10fff6c319161a3b1619 /usr.bin/elfcopy | |
parent | 39859f6ff983fcd0a0c2857cee891566c7b63baf (diff) | |
download | FreeBSD-src-55c6dd387976111bbcfd088fe769dafa767021bc.zip FreeBSD-src-55c6dd387976111bbcfd088fe769dafa767021bc.tar.gz |
elftoolchain: Use ${SRCTOP} for the top of the FreeBSD tree
It's provided by sys.mk so there's no need to derive it from ${.CURDIR}.
Suggested by: ngie
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D5998
Diffstat (limited to 'usr.bin/elfcopy')
-rw-r--r-- | usr.bin/elfcopy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/elfcopy/Makefile b/usr.bin/elfcopy/Makefile index 444fa18..cc99fa3 100644 --- a/usr.bin/elfcopy/Makefile +++ b/usr.bin/elfcopy/Makefile @@ -2,7 +2,7 @@ .include <src.opts.mk> -ELFTCDIR= ${.CURDIR:H:H}/contrib/elftoolchain +ELFTCDIR= ${SRCTOP}/contrib/elftoolchain ELFCOPYDIR= ${ELFTCDIR}/elfcopy .PATH: ${ELFCOPYDIR} |