From c3b739c72ecf28867b7805f3a86c0a2f174090c8 Mon Sep 17 00:00:00 2001 From: David Chisnall Date: Tue, 22 Jan 2013 19:40:26 +0000 Subject: [PATCH] Fix spurious leading / on dtc path in Makefile.inc1. Spotted by jhb. --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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