Commit 4e3f32a6 authored by Vitaly Lipatov's avatar Vitaly Lipatov

just import winetricks-20211221.tar with rpmgs script

parent 979ac1cd
......@@ -31,7 +31,7 @@ git clean -fxd || exit 125
./configure --disable-tests || exit 125
if command nproc >/dev/null 2>&1 ; then
if command -v nproc ; then
make "-j$(nproc)" || exit 125
else
make -j2
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -22,14 +22,14 @@ dotnet_verbs="$(./src/winetricks dlls list | grep ^dotnet | grep -v -e sdk -e ve
for verb1 in ${dotnet_verbs}; do
for verb2 in ${dotnet_verbs}; do
if [ "${verb1}" = "${verb2}" ]; then
continue
continue
fi
combo="${verb1}-${verb2}"
case "${combo}" in
dotnet11*-dotnet20|dotnet11*-dotnet30*|dotnet11*-dotnet35*)
echo "Skipping, has a popup that needs to be automated away in -q mode (but fails anyway, so not worth it)";
echo "${combo} skipped" | tee -a "${outdir}/statuslog.txt";
echo "Skipping, has a popup that needs to be automated away in -q mode (but fails anyway, so not worth it)"
echo "${combo} skipped" | tee -a "${outdir}/statuslog.txt"
continue;;
esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment