aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorDavid Chisnall <theraven@FreeBSD.org>2013-01-22 19:40:26 +0000
committerDavid Chisnall <theraven@FreeBSD.org>2013-01-22 19:40:26 +0000
commitc3b739c72ecf28867b7805f3a86c0a2f174090c8 (patch)
treed5fd4e5818e48cadd46f6f8b4b0262ba24d753a1 /Makefile.inc1
parentbf8596f6e2d64ce2dffd3b26fdde6db679979cb0 (diff)
downloadsrc-c3b739c72ecf28867b7805f3a86c0a2f174090c8.tar.gz
src-c3b739c72ecf28867b7805f3a86c0a2f174090c8.zip
Fix spurious leading / on dtc path in Makefile.inc1. Spotted by jhb.
Notes
Notes: svn path=/head/; revision=245822
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc12
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index c1782f140183..3a8466c7d762 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1114,7 +1114,7 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
# Default to building the BSDL DTC, but build the GPL one if users explicitly
# request it.
-_dtc= /usr.bin/dtc
+_dtc= usr.bin/dtc
.if ${MK_GPL_DTC} != "no"
_dtc= gnu/usr.bin/dtc
.endif