Author: ian
Date: Wed Sep  3 17:32:17 2014
New Revision: 271045
URL: http://svnweb.freebsd.org/changeset/base/271045

Log:
  Use sh -c '...' to launch the dtb build scripts with env stuff prepended,
  otherwise it tries to treat the env var stuff as a script file name.

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Wed Sep  3 17:26:46 2014        (r271044)
+++ head/sys/conf/files Wed Sep  3 17:32:17 2014        (r271045)
@@ -14,11 +14,11 @@ acpi_quirks.h                       optional acpi           
                   \
 # from the specified source (DTS) file: <platform>.dts -> <platform>.dtb
 #
 fdt_dtb_file                   optional fdt fdt_dtb_static \
-       compile-with "sh MACHINE=${MACHINE} $S/tools/fdt/make_dtb.sh $S 
${FDT_DTS_FILE} ${.CURDIR}" \
+       compile-with "sh -c 'MACHINE=${MACHINE} $S/tools/fdt/make_dtb.sh $S 
${FDT_DTS_FILE} ${.CURDIR}'" \
        no-obj no-implicit-rule before-depend   \
        clean           "${FDT_DTS_FILE:R}.dtb"
 fdt_static_dtb.h               optional fdt fdt_dtb_static \
-       compile-with "sh MACHINE=${MACHINE} $S/tools/fdt/make_dtbh.sh 
${FDT_DTS_FILE} ${.CURDIR}" \
+       compile-with "sh -c 'MACHINE=${MACHINE} $S/tools/fdt/make_dtbh.sh 
${FDT_DTS_FILE} ${.CURDIR}'" \
        dependency      "fdt_dtb_file" \
        no-obj no-implicit-rule before-depend \
        clean           "fdt_static_dtb.h"
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to