Hide DEL_LA_FILES in internal settings
This prevent normal users to change the default while preserving the possibility to set it to "n" for tests or whatever. Fixes ticket #1734
This commit is contained in:
parent
9eb3dbe1c4
commit
08614168ec
2 changed files with 9 additions and 8 deletions
15
Config.in
15
Config.in
|
@ -556,13 +556,6 @@ depends on !BOOK_BLFS
|
|||
bool "Strip Installed Binaries/Libraries"
|
||||
default n
|
||||
|
||||
config DEL_LA_FILES
|
||||
bool "Remove libtool .la files"
|
||||
default y
|
||||
help
|
||||
#-- Remove files libxxx.la installed by libtool. For a rationale
|
||||
# see https://blog.flameeyes.eu/tags/lafiles/
|
||||
|
||||
config NO_PROGRESS_BAR
|
||||
bool "DO NOT use/display progress_bar"
|
||||
default n
|
||||
|
@ -913,6 +906,14 @@ depends on !BOOK_BLFS
|
|||
string "Package contents list"
|
||||
default "unpacked"
|
||||
|
||||
config DEL_LA_FILES
|
||||
bool "Remove libtool .la files"
|
||||
default y
|
||||
help
|
||||
#-- Remove files libxxx.la installed by libtool. Only set to
|
||||
# "n" if you know what you are doing. For a rationale
|
||||
# see https://blog.flameeyes.eu/tags/lafiles/
|
||||
|
||||
#--- End Internal Settings
|
||||
endmenu
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ inline_doc
|
|||
local -r LFS_book="$BOOK_common INITSYS BLFS_TOOL"
|
||||
|
||||
# Build Settings by book
|
||||
local -r LFS_build="$BUILD_chroot NCURSES5 DEL_LA_FILES $BUILD_common PKGMNGT FULL_LOCALE WRAP_INSTALL"
|
||||
local -r LFS_build="$BUILD_chroot NCURSES5 $BUILD_common PKGMNGT FULL_LOCALE WRAP_INSTALL"
|
||||
|
||||
# System Settings by book
|
||||
local -r LFS_system="HOSTNAME INTERFACE IP_ADDR GATEWAY PREFIX BROADCAST DOMAIN DNS1 DNS2 FONT KEYMAP LOCAL LOG_LEVEL"
|
||||
|
|
Reference in a new issue