Files
cromite/build/patches/Remove-sideloading-of-version-dll.patch

24 lines
830 B
Diff
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
From: uazo <uazo@users.noreply.github.com>
Date: Sun, 15 Sep 2024 09:41:40 +0000
Subject: Remove sideloading of version.dll
Disabling support for local version.dll loading in windows
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
---
build/win/as_invoker.manifest | 2 ++
1 file changed, 2 insertions(+)
diff --git a/build/win/as_invoker.manifest b/build/win/as_invoker.manifest
--- a/build/win/as_invoker.manifest
+++ b/build/win/as_invoker.manifest
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<!-- Remove version dll hack -->
+<file name="version.dll" loadFrom="%SystemRoot%\system32\" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
--