Skip to content
Snippets Groups Projects
Commit 667b1a43 authored by Alexander Theißen's avatar Alexander Theißen
Browse files

Use the STRIP variable during prepend stage

A hardcoded strip does not work when cross compiling.
parent 871149f4
No related branches found
No related tags found
1 merge request!184Use the STRIP variable during prepend stage
......@@ -378,7 +378,7 @@ function op {
then
cp -v "$bin" "$stage/$BINDIR/$(basename $bin)"
else
strip -v "$bin" -o "$stage/$BINDIR/$(basename $bin)"
${STRIP} -v "$bin" -o "$stage/$BINDIR/$(basename $bin)"
fi
done
else
......
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