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/size | |
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/size')
-rw-r--r-- | usr.bin/size/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/size/Makefile b/usr.bin/size/Makefile index 54b512b..d7c8e41 100644 --- a/usr.bin/size/Makefile +++ b/usr.bin/size/Makefile @@ -2,7 +2,7 @@ .include <src.opts.mk> -ELFTCDIR= ${.CURDIR:H:H}/contrib/elftoolchain +ELFTCDIR= ${SRCTOP}/contrib/elftoolchain SIZEDIR= ${ELFTCDIR}/size .PATH: ${SIZEDIR} |