From a8de812595b33018edb4a20e5130569340f77228 Mon Sep 17 00:00:00 2001 From: Georgi Georgiev Date: Fri, 25 Jan 2013 02:26:59 +0900 Subject: [PATCH] NO_KERNEL_SOURCES left behind This looks like a leftover from a141d71531669dc888911c9141fd98ade753d200. All occurrences of NO_KERNEL_SOURCES should have been replaced by the negated KERNEL_SOURCES. Though probably isTrue should be used for all boolean options, to avoid confusion when setting them in the config file (some of them should be set to 0 or 1, while others support yes/no/0/1/true/false). --- gen_package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_package.sh b/gen_package.sh index 1970a85..9f88278 100755 --- a/gen_package.sh +++ b/gen_package.sh @@ -155,7 +155,7 @@ gen_kerncache_extract_config() gen_kerncache_is_valid() { KERNCACHE_IS_VALID=0 - if [ "${NO_KERNEL_SOURCES}" = '1' ] + if [ "${KERNEL_SOURCES}" = '0' ] then BUILD_KERNEL=0