diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-05 18:46:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-08 11:07:58 +0000 |
commit | 45b7d3add14eafc25da62bab68d4ae133f8dcb57 (patch) | |
tree | 3ed0895eec416d2c7cd78d28e7fac47d0c40e3c4 /meta/recipes-kernel | |
parent | a1dacd52d8bad948dcea3c39278da1d87e3167af (diff) | |
download | openembedded-core-45b7d3add14eafc25da62bab68d4ae133f8dcb57.tar.gz openembedded-core-45b7d3add14eafc25da62bab68d4ae133f8dcb57.tar.bz2 openembedded-core-45b7d3add14eafc25da62bab68d4ae133f8dcb57.zip |
base: Improve makefile clean handling, introduce CLEANBROKEN variable
It turns out we have quite a number of Makefiles out there without a
clean target. Rather than have all cases code an empty do_configure, add
a CLEANBROKEN variable which when set to "1" will disable the attempt to
"make clean".
This patch also adjusts various recipes which either have this problem
fixed, or have been reported to have make clean failures.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/cryptodev/cryptodev_1.6.inc | 2 | ||||
-rw-r--r-- | meta/recipes-kernel/linux-firmware/linux-firmware_git.bb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc index 946faac7d2..6a93a35a39 100644 --- a/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc +++ b/meta/recipes-kernel/cryptodev/cryptodev_1.6.inc @@ -9,3 +9,5 @@ SRC_URI[md5sum] = "eade38998313c25fd7934719cdf8a2ea" SRC_URI[sha256sum] = "75f1425c8ea1f8cae523905a5a046a35092327a6152800b0b86efc4e56fb3e2f" S = "${WORKDIR}/cryptodev-linux-${PV}" + +CLEANBROKEN = "1" diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb index a107f804fa..a2f16d1406 100644 --- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb +++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb @@ -34,6 +34,8 @@ S = "${WORKDIR}/git" inherit allarch update-alternatives +CLEANBROKEN = "1" + do_compile() { : } |