Strip libraries as well

This commit is contained in:
Jeremy Soller 2018-12-22 12:48:31 -07:00
parent b86345a1d2
commit e9eae9ce82
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -73,6 +73,6 @@ function recipe_clean {
function recipe_stage {
dest="$(realpath $1)"
make DESTDIR="$dest" install
find "$dest"/bin -exec $STRIP {} ';' 2> /dev/null
find "$dest"/{bin,lib} -exec $STRIP {} ';' 2> /dev/null
skip=1
}