From 4698562f64103757c5fb80bb0abd12e6b0150b2f Mon Sep 17 00:00:00 2001 From: auronandace Date: Sun, 17 Apr 2022 17:16:45 +0100 Subject: [PATCH] Use find(1) -delete feature in tix-eradicate-libtool-la(1). --- tix/tix-eradicate-libtool-la | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tix/tix-eradicate-libtool-la b/tix/tix-eradicate-libtool-la index 5934d4a1..b195fb02 100755 --- a/tix/tix-eradicate-libtool-la +++ b/tix/tix-eradicate-libtool-la @@ -18,4 +18,4 @@ set -e cd "$TIX_INSTALL_DIR" -find | grep '\.la$' | while read la; do rm -f "$la"; done +find . -name '*.la' -delete