overlay profiles: Do not install lua binaries in generic images

We are installing lua only for the library it provides, we don't need
the interpreter or compiler.
This commit is contained in:
Krzesimir Nowak 2023-04-26 17:07:15 +02:00
parent 70d169e633
commit dde19b3552

View File

@ -13,6 +13,7 @@ FEATURES="nodoc noinfo noman"
# Remove bash-completion files as we don't install bash-completion. # Remove bash-completion files as we don't install bash-completion.
# Remove locale LC_MESSAGES files. # Remove locale LC_MESSAGES files.
# Remove sqlite3 binary installation provided by dev-db/sqlite as we only need the libs. # Remove sqlite3 binary installation provided by dev-db/sqlite as we only need the libs.
# Remove lua binaries as we only need the libs.
INSTALL_MASK="${INSTALL_MASK} INSTALL_MASK="${INSTALL_MASK}
/usr/sbin/locale-gen /usr/sbin/locale-gen
/usr/share/bash-completion /usr/share/bash-completion
@ -21,6 +22,7 @@ INSTALL_MASK="${INSTALL_MASK}
/usr/share/zsh /usr/share/zsh
/var/db/Makefile /var/db/Makefile
/usr/bin/sqlite3 /usr/bin/sqlite3
/usr/bin/lua*
" "
# Exclude assorted config files that we can do without # Exclude assorted config files that we can do without