mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +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
|
EOF
|
||||||
if [ ! -d "${condir}/PlugIns" ]; then
|
if [ ! -d "${condir}/PlugIns" ]; then
|
||||||
mkdir -p "${condir}/PlugIns"
|
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}"
|
echo Copy plugin "${libname}"
|
||||||
dylib=$(basename "${libname}")
|
dylib=$(basename "${libname}")
|
||||||
dirname=$(dirname "${libname}")
|
dirname=$(dirname "${libname}")
|
||||||
|
Loading…
Reference in New Issue
Block a user