Fix missing path in strip

This commit is contained in:
Jeremy Soller 2018-12-14 17:49:43 -07:00
parent ec71f8b839
commit bad9f48afc
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

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