From bd72a13a4ca3033bacbaf9e9a2b424acf149f83d Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Fri, 30 Nov 2012 00:46:03 +0000 Subject: flex: fix build for nommu systems The flex binary uses fork() so it breaks on !MMU builds. Since we usually don't require flex in the target and the common scenario is that we just want libfl in staging reverse the options so that BR2_PACKAGE_FLEX just builds and install libfl.a and change the LIBFL option to BR2_PACKAGE_FLEX_BINARY to install the binary in the target. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/flex/Config.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'package/flex/Config.in') diff --git a/package/flex/Config.in b/package/flex/Config.in index b10eb0037..adef46867 100644 --- a/package/flex/Config.in +++ b/package/flex/Config.in @@ -6,10 +6,10 @@ config BR2_PACKAGE_FLEX http://www.gnu.org/software/flex/ -config BR2_PACKAGE_FLEX_LIBFL - bool "Install libfl.a under staging_dir/usr/lib" - default y +config BR2_PACKAGE_FLEX_BINARY + bool "Install tool in the target" + # needs fork() + depends on BR2_USE_MMU depends on BR2_PACKAGE_FLEX help - Install libfl.a under staging_dir/usr/lib for further development - on a host machine. + Install the flex binary tool in the target filesystem. -- cgit v1.2.3