[meld/meld-3-16: 1/2] setup_win32: Fix for library include order issues related to msys



commit cc45a7da802d01c1493a06f023b55c01f84e3624
Author: Kai Willadsen <kai willadsen gmail com>
Date:   Sat Dec 12 10:33:35 2015 +1000

    setup_win32: Fix for library include order issues related to msys
    
    An update of msysgit has somehow pulled in libffi into the path that
    cx_freeze searches to find its libraries. On the only build box that
    matters, this causes us to include a 64-bit libffi with our
    otherwise-32-bit build, breaking everything.
    
    I won't even pretend to understand how the change in this patch
    fixes the problem, but after several hours fighting Windows +
    cx_freeze path resolution I also really, really don't care.

 setup_win32.py |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/setup_win32.py b/setup_win32.py
index 9e7f3bd..b72dd20 100644
--- a/setup_win32.py
+++ b/setup_win32.py
@@ -66,6 +66,7 @@ build_exe_options = {
     "includes": ["gi"],
     "packages": ["gi", "weakref"],
     "include_files": include_files,
+    "bin_path_excludes": [""],
 }
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]