mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
avoid deployment of debug version of qt plugins
This commit is contained in:
parent
8097911a9f
commit
aea9c4fc1b
@ -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}")
|
||||
|
Loading…
Reference in New Issue
Block a user