]> git.baikalelectronics.ru Git - kernel.git/commit
kbuild: Do not use hyphen in exported variable name
authorBen Hutchings <ben@decadent.org.uk>
Sat, 19 Aug 2017 21:30:02 +0000 (22:30 +0100)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 21 Aug 2017 00:06:00 +0000 (09:06 +0900)
commit5d7cb2da3daf24c19b02a192f4d08508ef4a3f8a
treed24b23c49cb81350f410a820db155866912622e0
parentd7ddaa968f00c16eedddcd1baaf48fd1f9c3f4af
kbuild: Do not use hyphen in exported variable name

This definition in Makefile.dtbinst:

    export dtbinst-root ?= $(obj)

should define and export dtbinst-root when handling the root dts
directory, and do nothing in the subdirectories.  However some shells,
including dash, will not pass through environment variables whose name
includes a hyphen.  Usually GNU make does not use a shell to recurse,
but if e.g. $(srctree) contains '~' it will use a shell here.

Rename the variable to dtbinst_root.

References: https://bugs.debian.org/833561
Fixes: 323a028d39cdi ("dts, kbuild: Implement support for dtb vendor subdirs")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/Makefile.dtbinst