Use the STRIP variable during prepend stage

A hardcoded strip does not work when cross compiling.
This commit is contained in:
Alexander Theißen 2018-11-17 23:06:27 +01:00
parent 871149f4a0
commit 667b1a43a8

View File

@ -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