diff mbox

[2/2] package/keyutils: disable on avr32

Message ID 8d01634829b527333c15467ad91cd0cbeb4c91bb.1356459033.git.yann.morin.1998@free.fr
State Superseded
Headers show

Commit Message

Yann E. MORIN Dec. 25, 2012, 6:11 p.m. UTC
keyutils does not build on avr32 (probably
because the toolchain is way too old).

Fixes:
    http://autobuild.buildroot.net/results/aa86f6a68f5d0ea4914ab259ed270615bc9d6a99/

Merry X-Mas!

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/keyutils/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

Comments

Peter Korsgaard Dec. 26, 2012, 10:57 p.m. UTC | #1
>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 Yann> keyutils does not build on avr32 (probably
 Yann> because the toolchain is way too old).

 Yann> Fixes:
 Yann>     http://autobuild.buildroot.net/results/aa86f6a68f5d0ea4914ab259ed270615bc9d6a99/

Hmm, that just looks like a warning which the package errors out on as
it uses -Werror and we don't override CFLAGS like we should. How about
moving TARGET_CONFIGURE_OPTS past MAKE instead? ( $(MAKE)
$(TARGET_CONFIGURE_OPTS) -C ..)
diff mbox

Patch

diff --git a/package/keyutils/Config.in b/package/keyutils/Config.in
index 9b5a24b..f77eb52 100644
--- a/package/keyutils/Config.in
+++ b/package/keyutils/Config.in
@@ -1,5 +1,6 @@ 
 config BR2_PACKAGE_KEYUTILS
 	bool "keyutils"
+	depends on !BR2_avr32
 	help
 	  These tools are used to control the key management system
 	  built into the Linux kernel.