From 1c884d870efad62ec02447c6156e18c4356bc875 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 27 Jul 2021 14:20:33 +0300 Subject: [PATCH] kiss: fix incorrect path to pkg_strip. Closes #252 --- kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss b/kiss index 13f331a..222df9f 100755 --- a/kiss +++ b/kiss @@ -621,7 +621,7 @@ pkg_strip() { # would run od on all files (upwards of 4000 for Python). */sbin/?*|*/bin/?*|*/lib/?*|*/lib??/?*|*/lib???/?*|*/lib????/?*) - case $(od -A o -t c -N 18 "$file") in + case $(od -A o -t c -N 18 "$pkg_dir/$pkg$file") in # REL (object files (.o), static libraries (.a)). *177*E*L*F*0000020\ 001\ *|*\!*\<*a*r*c*h*\>*) strip -g -R .comment -R .note "$pkg_dir/$pkg$file"