mirror of
https://github.com/moparisthebest/pacman
synced 2025-01-09 04:57:59 -05:00
makepkg: fallback to sane defaults for library stripping
If the library stripping variables are not defined in makepkg.conf, libraries will be fully stripped and become broken. Fallback to a sane default stripping level. Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
892266277e
commit
3c8816f74b
@ -864,6 +864,9 @@ tidy_install() {
|
|||||||
|
|
||||||
if [[ $(check_option strip) = y && -n ${STRIP_DIRS[*]} ]]; then
|
if [[ $(check_option strip) = y && -n ${STRIP_DIRS[*]} ]]; then
|
||||||
msg2 "$(gettext "Stripping unneeded symbols from binaries and libraries...")"
|
msg2 "$(gettext "Stripping unneeded symbols from binaries and libraries...")"
|
||||||
|
# make sure library stripping variables are defined to prevent excess stripping
|
||||||
|
[[ -z ${STRIP_SHARED+x} ]] && STRIP_SHARED="-S"
|
||||||
|
[[ -z ${STRIP_STATIC+x} ]] && STRIP_STATIC="-S"
|
||||||
local binary
|
local binary
|
||||||
find ${STRIP_DIRS[@]} -type f -perm -u+w 2>/dev/null | while read binary ; do
|
find ${STRIP_DIRS[@]} -type f -perm -u+w 2>/dev/null | while read binary ; do
|
||||||
case "$(file -bi "$binary")" in
|
case "$(file -bi "$binary")" in
|
||||||
|
Loading…
Reference in New Issue
Block a user