diff options
author | Alexander Vereeken <Alexander88207@protonmail.com> | 2025-05-04 02:53:25 +0300 |
---|---|---|
committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2025-05-04 02:56:00 +0300 |
commit | 326081dbe471b796f91afa37ac8a83286847ac8f (patch) | |
tree | 63a34bb983607c0dda346311cd703cfc3209e336 /emulators/winetricks/files/patch-src_winetricks | |
parent | editors/vim: Update to 9.1.1362 (diff) |
Commit log:
https://github.com/Winetricks/winetricks/compare/20250102...e73c4d8
While here, silent warnings about being unable to determine
architecture, as our Wine is currently wrapped.
PR: 286552
Diffstat (limited to 'emulators/winetricks/files/patch-src_winetricks')
-rw-r--r-- | emulators/winetricks/files/patch-src_winetricks | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/emulators/winetricks/files/patch-src_winetricks b/emulators/winetricks/files/patch-src_winetricks new file mode 100644 index 000000000000..08854bf3badd --- /dev/null +++ b/emulators/winetricks/files/patch-src_winetricks @@ -0,0 +1,20 @@ +--- src/winetricks.orig 2025-02-12 05:00:41 UTC ++++ src/winetricks +@@ -4462,7 +4462,7 @@ winetricks_set_wineprefix() + fi + fi + if [ -z "${_W_wine_binary_arch}" ]; then +- w_warn "Unknown file arch of ${WINE_BIN}." ++ true + fi + + # determine wow64 type (new/old) +@@ -4569,7 +4569,7 @@ winetricks_set_wineprefix() + if [ "${_W_wow64_style}" = "new" ]; then + w_warn "You appear to be using Wine's new wow64 mode. Note that this is EXPERIMENTAL and not yet fully supported. If reporting an issue, be sure to mention this." + elif [ "${_W_wow64_style}" = "unknown" ]; then +- w_warn "WoW64 type could not be detected." ++ true + fi + fi + |