Skip to content

Commit

Permalink
hotfixes: Don`t apply legacy-ntdll-WRITECOPY when WOW64 mode is enable (
Browse files Browse the repository at this point in the history
#1282)

Signed-off-by: Kirill Artemev <[email protected]>
  • Loading branch information
Artewar67 authored Oct 8, 2024
1 parent 3091eb2 commit 031bc3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# legacy ntdll-WRITECOPY need for protonify
if [ "$_use_staging" = "true" ] && [ "$_protonify" = "true" ] && ( cd "${srcdir}"/"${_stgsrcdir}" && git merge-base --is-ancestor 16dce521242b3f4a52cd2c8799ce6fe464fac83c HEAD ); then
if [ "$_use_staging" = "true" ] && [ "$_protonify" = "true" ] && [ "$_NOLIB32" != "wow64" ] && ( cd "${srcdir}"/"${_stgsrcdir}" && git merge-base --is-ancestor 16dce521242b3f4a52cd2c8799ce6fe464fac83c HEAD ); then
_hotfixes+=("$_where"/wine-tkg-patches/hotfixes/legacy_ntdll_writecopy/legacy-ntdll-writecopy)
warning "Hotfix: Apply legacy ntdll-WRITECOPY for protonify patches"
fi

0 comments on commit 031bc3e

Please sign in to comment.