Browse Source

chore(CI): Revert reversal of 64-bit and 32-bit DLL search paths

Instroduced in 80a0a4ae62, caught in post-merge
review here: https://github.com/qTox/qTox/pull/6483/files#r815294041
pull/6497/head
Anthony Bilinski 4 years ago
parent
commit
ca4d4b8a98
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      windows/cross-compile/build.sh

2
windows/cross-compile/build.sh

@ -197,7 +197,7 @@ do @@ -197,7 +197,7 @@ do
WINE_DLL_DIR="/opt/wine-stable/lib/wine/i386-windows"
elif [[ "$ARCH" == "x86_64" ]]
then
WINE_DLL_DIR="/opt/wine-stable/lib/wine/i386-windows /opt/wine-stable/lib64/wine/x86_64-windows"
WINE_DLL_DIR="/opt/wine-stable/lib64/wine/x86_64-windows /opt/wine-stable/lib/wine/i386-windows"
fi
python3 /usr/local/bin/mingw-ldd.py $line --dll-lookup-dirs $QTOX_PREFIX_DIR $WINE_DLL_DIR --output-format tree >> dlls-required
done < <(cat exes runtime-dlls)

Loading…
Cancel
Save