summaryrefslogtreecommitdiff
path: root/tools/windows_packaging
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2013-08-16 20:16:29 +1000
committerTim Mayberry <mojofunk@gmail.com>2013-12-07 20:48:19 +1000
commit192ba4b34b5b6adef657b17672d7da2e409cfece (patch)
treeb8607951e26d2776f77f379cc8e86047c0b036d3 /tools/windows_packaging
parent30370eb0a039b991342ebf1437e94ebc4db793c6 (diff)
Strip all executables in a mingw release build
Diffstat (limited to 'tools/windows_packaging')
-rwxr-xr-xtools/windows_packaging/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/windows_packaging/package.sh b/tools/windows_packaging/package.sh
index 449d008444..c54e455418 100755
--- a/tools/windows_packaging/package.sh
+++ b/tools/windows_packaging/package.sh
@@ -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