commit aea9c4fc1b815a37977086e601aa7e194d2fbd01
Author: Stephan Witt <[email protected]>
Date: Sat Mar 1 10:23:24 2014 +0100
avoid deployment of debug version of qt plugins
diff --git a/development/LyX-Mac-binary-release.sh
b/development/LyX-Mac-binary-release.sh
index fd81429..03815c7 100644
--- a/development/LyX-Mac-binary-release.sh
+++ b/development/LyX-Mac-binary-release.sh
@@ -673,7 +673,7 @@ Translations = translations
EOF
if [ ! -d "${condir}/PlugIns" ]; then
mkdir -p "${condir}/PlugIns"
- find "${source}/plugins" -name \*.dylib -print | while read
libname ; do
+ find "${source}/plugins" -name \*.dylib -print | grep -v
_debug.dylib | while read libname ; do
echo Copy plugin "${libname}"
dylib=$(basename "${libname}")
dirname=$(dirname "${libname}")