Skip to content
Snippets Groups Projects
Verified Commit bad9f48a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix missing path in strip

parent ec71f8b8
No related branches found
No related tags found
No related merge requests found
...@@ -75,6 +75,6 @@ function recipe_clean { ...@@ -75,6 +75,6 @@ function recipe_clean {
function recipe_stage { function recipe_stage {
dest="$(realpath $1)" dest="$(realpath $1)"
make DESTDIR="$dest" install make DESTDIR="$dest" install
find "$dest"/{bin,libexec} -exec $STRIP {} ';' 2> /dev/null find "$dest"/bin -exec $STRIP {} ';' 2> /dev/null
skip=1 skip=1
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment