Config.in: Incorrect definition for GRSECURITY_HOST was y/n (bool) and not 0/1 (int)
This commit is contained in:
parent
8ad6e9a011
commit
b95c619158
1 changed files with 6 additions and 1 deletions
|
@ -249,7 +249,7 @@ menu "--- BOOK Settings"
|
|||
#--- End CLFS specific params
|
||||
|
||||
#--- HLFS specific params
|
||||
config GRSECURITY_HOST
|
||||
config CONFIG_GRSECURITY_HOST
|
||||
bool "Building on grsecurity enabled host?"
|
||||
default n
|
||||
depends on BOOK_HLFS
|
||||
|
@ -649,6 +649,11 @@ endmenu
|
|||
|
||||
# convert CONFIG_XXXX n/y to XXXX 0/1
|
||||
|
||||
config GRSECURITY_HOST
|
||||
int
|
||||
default 0 if !CONFIG_GRSECURITY_HOST
|
||||
default 1 if CONFIG_GRSECURITY_HOST
|
||||
|
||||
config COMPARE
|
||||
int
|
||||
default 0 if !CONFIG_COMPARE
|
||||
|
|
Reference in a new issue