Keep unstripped executables in the target directory

This commit is contained in:
Jeremy Soller 2017-06-18 16:42:43 -06:00
parent eb2a044d81
commit 18fec4b46a

View File

@ -191,8 +191,7 @@ function op {
mkdir -p "../stage/$BINDIR"
for bin in $bins
do
cp -v "$bin" "../stage/$BINDIR/$(basename $bin)"
strip -v "../stage/$BINDIR/$(basename $bin)"
strip -v "$bin" -o "../stage/$BINDIR/$(basename $bin)"
done
fi
fi