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
reviewable/pr6497/r1
Anthony Bilinski 2022-02-26 09:40:36 -08:00
parent cd8af735fc
commit ca4d4b8a98
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
1 changed files with 1 additions and 1 deletions

View File

@ -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)