13
0

Strip all executables in a mingw release build

This commit is contained in:
Tim Mayberry 2013-08-16 20:16:29 +10:00
parent 30370eb0a0
commit 192ba4b34b

View File

@ -172,7 +172,7 @@ if [ x$DEBUG = xT ]; then
cp $MINGW_ROOT/bin/gtk-demo.exe $PACKAGE_DIR
else
echo "Optimized build Stripping executable ..."
$STRIP $PACKAGE_DIR/ardour-3.0.exe
find $PACKAGE_DIR -type f -name "*.exe*" | xargs $STRIP
echo "Stripping libraries ..."
find $PACKAGE_DIR -type f -name "*.dll*" | xargs $STRIP
fi