From: Stephan Witt Date: Sat, 1 Mar 2014 09:23:24 +0000 (+0100) Subject: avoid deployment of debug version of qt plugins X-Git-Tag: 2.1.0rc1~138 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=aea9c4fc1b815a37977086e601aa7e194d2fbd01;p=features.git 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 fd81429604..03815c7d8f 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}")