From: Michael Tremer Date: Tue, 25 May 2021 20:49:04 +0000 (+0000) Subject: scripts: Remove *.la files, too X-Git-Tag: 0.9.28~1285^2~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02be7b5f14a5eeec863458d3a30294ce15369eae;p=pakfire.git scripts: Remove *.la files, too Signed-off-by: Michael Tremer --- diff --git a/src/scripts/remove-static-libs b/src/scripts/remove-static-libs index b0716a01d..07280d666 100644 --- a/src/scripts/remove-static-libs +++ b/src/scripts/remove-static-libs @@ -43,6 +43,11 @@ main() { fi done + # Remove all .la files + for file in $(find "${buildroot}" -name "*.la"); do + rm -f "${file}" + done + return 0 }