summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-05-08 12:32:37 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-05-09 10:01:07 -0500
commitb63899c42fbeb16e1f99866ec830aec8d615d61b (patch)
tree4623f59f7f1dd39f7a18e3a56bdb28d161cbb766 /pkgs/development
parent62d07ae7d44f92a16f91cd8f669fdf047b45326d (diff)
qt55.qmakeHook: fix static library relocation
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/qt-5/5.5/qmake-hook.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
index 425048a593575..2669a396280f4 100644
--- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
+++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh
@@ -58,7 +58,7 @@ _qtMultioutModuleDevs() {
     if [ "z${!outputLib}" != "z${!outputDev}" ]; then
         pushd "${!outputLib}"
         if [ -d "lib" ]; then
-            find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \
+            find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 \) | \
                 while read -r -d $'\0' file; do
                     mkdir -p "${!outputDev}/$(dirname "$file")"
                     mv "${!outputLib}/$file" "${!outputDev}/$file"