From ebf5d7c6d745234d15610db1b1bbf32f301039f1 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Wed, 7 Jan 2009 19:13:03 +0000
Subject: [PATCH] abuild: strip files in all subdirs

---
 abuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/abuild b/abuild
index bfc19fa31959..579f2223dc39 100755
--- a/abuild
+++ b/abuild
@@ -495,10 +495,10 @@ checksum() {
 }
 
 stripbin() {
-	local bin dirs=${STRIP_DIRS:-bin lib sbin usr/bin usr/lib usr/sbin}
+	local bin
 	cd "${subpkgdir:-$pkgdir}" || return 1
 	msg "Stripping binaries"
-	find $dirs -type f 2>/dev/null | while read bin; do
+	find . -type f 2>/dev/null | while read bin; do
 		local opt=
 		case "$(file -biz "$bin")" in
 			*/x-sharedlib*|*/x-archive*)
-- 
GitLab