Make "Rebuild Makefile" disable all the other options:
This prevents users from using it without setting a build first
This commit is contained in:
parent
31a9b1440c
commit
06eddf40f2
1 changed files with 9 additions and 5 deletions
14
Config.in
14
Config.in
|
@ -1,6 +1,8 @@
|
||||||
# $Id$
|
# $Id$
|
||||||
menu "BOOK Settings"
|
menu "BOOK Settings"
|
||||||
|
|
||||||
|
depends on !REBUILD_MAKEFILE
|
||||||
|
|
||||||
#--- BOOK/script
|
#--- BOOK/script
|
||||||
choice
|
choice
|
||||||
prompt "Use BOOK"
|
prompt "Use BOOK"
|
||||||
|
@ -630,7 +632,7 @@ menu "BOOK Settings"
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "General Settings"
|
menu "General Settings"
|
||||||
depends on !BOOK_BLFS
|
depends on !BOOK_BLFS && !REBUILD_MAKEFILE
|
||||||
|
|
||||||
#--- {C,H,}LFS User Account
|
#--- {C,H,}LFS User Account
|
||||||
|
|
||||||
|
@ -729,7 +731,7 @@ depends on !BOOK_BLFS
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "Build Settings"
|
menu "Build Settings"
|
||||||
depends on !BOOK_BLFS
|
depends on !BOOK_BLFS && !REBUILD_MAKEFILE
|
||||||
|
|
||||||
#--- Test Suites
|
#--- Test Suites
|
||||||
config CONFIG_TESTS
|
config CONFIG_TESTS
|
||||||
|
@ -888,7 +890,7 @@ depends on !BOOK_BLFS
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "System configuration"
|
menu "System configuration"
|
||||||
depends on !BOOK_BLFS
|
depends on !BOOK_BLFS && !REBUILD_MAKEFILE
|
||||||
|
|
||||||
#--- FSTAB
|
#--- FSTAB
|
||||||
config HAVE_FSTAB
|
config HAVE_FSTAB
|
||||||
|
@ -1229,7 +1231,7 @@ endif
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
config REBUILD_MAKEFILE
|
config REBUILD_MAKEFILE
|
||||||
depends on !BOOK_BLFS
|
# depends on !BOOK_BLFS
|
||||||
bool "Rebuild the Makefile (see help)"
|
bool "Rebuild the Makefile (see help)"
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
|
@ -1239,4 +1241,6 @@ config REBUILD_MAKEFILE
|
||||||
# customizing the base system build scripts.
|
# customizing the base system build scripts.
|
||||||
#
|
#
|
||||||
# See README.CUSTOM for more info about this feature.
|
# See README.CUSTOM for more info about this feature.
|
||||||
|
# Note that you should do that after configuring a jhalfs
|
||||||
|
# build, and only if you need changing the build scripts order
|
||||||
|
# or add a new one.
|
||||||
|
|
Reference in a new issue