1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Use find(1) -delete feature in tix-eradicate-libtool-la(1).

This commit is contained in:
auronandace 2022-04-17 17:16:45 +01:00
parent e9c4946ff7
commit 4698562f64

View file

@ -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