diff options
author | UK992 <urbankrajnc92@gmail.com> | 2017-02-05 02:34:58 +0100 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2017-02-06 02:28:54 +0100 |
commit | b6b96322c16dc51f4f4fc66250552eee541a6a0b (patch) | |
tree | dadb73c9966be03246c2a8ce2386178ab88e214c /python/servo/command_base.py | |
parent | ef2851ad2189d10f284deabb076591131089e734 (diff) | |
download | servo-b6b96322c16dc51f4f4fc66250552eee541a6a0b.tar.gz servo-b6b96322c16dc51f4f4fc66250552eee541a6a0b.zip |
Remove freetype dependency on Windows
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 8149a705014..3169e9c9d6a 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -401,6 +401,8 @@ class CommandBase(object): if is_windows(): if not os.environ.get("NATIVE_WIN32_PYTHON"): env["NATIVE_WIN32_PYTHON"] = sys.executable + # Always build harfbuzz from source + env["HARFBUZZ_SYS_NO_PKG_CONFIG"] = "true" if not self.config["tools"]["system-rust"] \ or self.config["tools"]["rust-root"]: |