From d71ba5fa6aff5d69e66089be3e8795374f23a11a Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sun, 20 Mar 2016 14:11:25 -0400 Subject: [PATCH] use /mingw/bin for copying dlls when building on Windows with msys2 The old path was /usr/local/bin, but I think Hans was manually adding the dlls there. If not we can use an ifdef to set this specifically for use with msys2 --- packages/win32_inno/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index c9eb3c54a..262e0b513 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -62,7 +62,8 @@ prebuilt_install: # #==============================================================================# -bin_src = /usr/local/bin +#bin_src = /usr/local/bin +bin_src = /mingw/bin system32 = /c/WINDOWS/system32 lib_install: # ultimately, the DLLs should be installed in %SystemRoot%\system32 by -- GitLab