diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-20 13:31:39 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-20 13:31:39 +0100 |
| commit | 667e03fe978b0f170a213c70f151016f214108ba (patch) | |
| tree | 3482438ecbca42da24f98632410ced504ece3536 | |
| parent | 75d8543ffaf04b609805901b96d21e3a5303027f (diff) | |
Adapt for new mingw paths.
| -rwxr-xr-x | cdist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -241,8 +241,8 @@ def prepare_for_windows(env, bits): else: mingw_name = 'x86_64' - mingw_path = '/mingw/bin' - mingw_prefixes = ['/mingw', '/mingw/%s-w64-mingw32' % mingw_name] + mingw_path = '/mingw/%d/bin' % bits + mingw_prefixes = ['/mingw/%d' % bits, '/mingw/%d/%s-w64-mingw32' % (bits, mingw_name)] env.set('PKG_CONFIG_LIBDIR', '%s/lib/pkgconfig' % env.windows_prefix) env.set('PKG_CONFIG_PATH', '%s/lib/pkgconfig' % env.work_dir_cscript()) |
