From 6be96e7612877adb76fcf7b212765c387388597d Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sun, 23 Sep 2012 21:28:03 +1000 Subject: makepkg: move debug symbol stripping to separate function Move stripping of files to a spearate function that will be expanded for the handling of creating debug symbol packages. Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 238d3408..5f96f08d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1426,6 +1426,11 @@ run_package() { run_function_safe "$pkgfunc" } +strip_file() { + local binary=$1; shift + strip $@ "$binary" +} + tidy_install() { cd_safe "$pkgdir" msg "$(gettext "Tidying install...")" @@ -1480,16 +1485,19 @@ tidy_install() { # 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 strip_flags find . -type f -perm -u+w -print0 2>/dev/null | while read -d '' binary ; do case "$(file -bi "$binary")" in *application/x-sharedlib*) # Libraries (.so) - strip $STRIP_SHARED "$binary";; + strip_flags="$STRIP_SHARED";; *application/x-archive*) # Libraries (.a) - strip $STRIP_STATIC "$binary";; + strip_flags="$STRIP_STATIC";; *application/x-executable*) # Binaries - strip $STRIP_BINARIES "$binary";; + strip_flags="$STRIP_BINARIES";; + *) + continue ;; esac + strip_file "$binary" ${strip_flags} done fi -- cgit v1.2.3-24-g4f1b