From 0903faa3fb54f704b0a517329319daa7787022a1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 8 May 2016 10:52:22 -0500 Subject: [PATCH] qt56.qmakeHook: fix static library relocation --- pkgs/development/libraries/qt-5/5.6/qmake-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh index 425048a5935..62a8c8b71c3 100644 --- a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/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"