summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2017-05-30 04:15:40 +0000
committerngie <ngie@FreeBSD.org>2017-05-30 04:15:40 +0000
commit2a14abb0b39bdf34ad6ee24df9983b7936459841 (patch)
treed442222244b8c42fc84328216af6586bbbc62082 /bin
parent174201f0e9f69a4d24e5536ae1121849981cdf5e (diff)
downloadFreeBSD-src-2a14abb0b39bdf34ad6ee24df9983b7936459841.zip
FreeBSD-src-2a14abb0b39bdf34ad6ee24df9983b7936459841.tar.gz
MFC r314655:
bin: normalize paths using SRCTOP-relative paths or :H when possible This simplifies make logic/output
Diffstat (limited to 'bin')
-rw-r--r--bin/csh/Makefile2
-rw-r--r--bin/df/Makefile2
-rw-r--r--bin/freebsd-version/Makefile2
-rw-r--r--bin/rmail/Makefile2
-rw-r--r--bin/sh/Makefile6
5 files changed, 7 insertions, 7 deletions
diff --git a/bin/csh/Makefile b/bin/csh/Makefile
index ea06531..4fb7b84 100644
--- a/bin/csh/Makefile
+++ b/bin/csh/Makefile
@@ -9,7 +9,7 @@
.include <src.opts.mk>
PACKAGE=runtime
-TCSHDIR= ${.CURDIR}/../../contrib/tcsh
+TCSHDIR= ${SRCTOP}/contrib/tcsh
.PATH: ${TCSHDIR}
PROG= csh
diff --git a/bin/df/Makefile b/bin/df/Makefile
index c054d29..6d36a37 100644
--- a/bin/df/Makefile
+++ b/bin/df/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PACKAGE=runtime
-MOUNT= ${.CURDIR}/../../sbin/mount
+MOUNT= ${SRCTOP}/sbin/mount
.PATH: ${MOUNT}
PROG= df
diff --git a/bin/freebsd-version/Makefile b/bin/freebsd-version/Makefile
index c49f661..073f4d3 100644
--- a/bin/freebsd-version/Makefile
+++ b/bin/freebsd-version/Makefile
@@ -4,7 +4,7 @@ PACKAGE=runtime
SCRIPTS = freebsd-version
MAN = freebsd-version.1
CLEANFILES = freebsd-version freebsd-version.sh
-NEWVERS = ${.CURDIR}/../../sys/conf/newvers.sh
+NEWVERS = ${SRCTOP}/sys/conf/newvers.sh
freebsd-version.sh: ${.CURDIR}/freebsd-version.sh.in ${NEWVERS}
eval $$(egrep '^(TYPE|REVISION|BRANCH)=' ${NEWVERS}) ; \
diff --git a/bin/rmail/Makefile b/bin/rmail/Makefile
index 53d0ca4..21f3ceb 100644
--- a/bin/rmail/Makefile
+++ b/bin/rmail/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PACKAGE=sendmail
-SENDMAIL_DIR=${.CURDIR}/../../contrib/sendmail
+SENDMAIL_DIR=${SRCTOP}/contrib/sendmail
.PATH: ${SENDMAIL_DIR}/rmail
# Not much point this being static. It calls a shared sendmail...
diff --git a/bin/sh/Makefile b/bin/sh/Makefile
index ee7dc14..65856de 100644
--- a/bin/sh/Makefile
+++ b/bin/sh/Makefile
@@ -28,9 +28,9 @@ WARNS?= 2
WFORMAT=0
.PATH: ${.CURDIR}/bltin \
- ${.CURDIR}/../kill \
- ${.CURDIR}/../test \
- ${.CURDIR}/../../usr.bin/printf
+ ${.CURDIR:H}/kill \
+ ${.CURDIR:H}/test \
+ ${SRCTOP}/usr.bin/printf
CLEANFILES+= mknodes mknodes.o \
mksyntax mksyntax.o
OpenPOWER on IntegriCloud