From eb51ce8efbe8e65a815fcfe8be3e6c8c903e5b68 Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Tue, 25 Aug 2020 13:30:09 +0000 Subject: [PATCH] Fix running the builddtb target on a noexec file system Obtained from: CheriBSD --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 0a85d6be6be9..ac2bcf7b22b0 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -3260,7 +3260,7 @@ DTBOUTPUTPATH= ${.CURDIR} # builddtb: .PHONY @PATH=${TMPPATH} MACHINE=${TARGET} \ - ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ + sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} ###############