forked from kiss-community/repo
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find "$KISS_ROOT/usr/lib" \
|
|
! -type d \
|
|
-name \*.la \
|
|
-exec rm -f -- {} +
|
|
|
|
find "$KISS_ROOT/var/db/kiss/installed" \
|
|
! -type d \
|
|
-name manifest \
|
|
-exec sed -i '/.*\.la$/d' {} +
|