aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-01-14 21:45:07 -0500
committerGitHub <noreply@github.com>2019-01-14 21:45:07 -0500
commit1ce9b4c7c6a6190902a0356fea6c518b8362d5b4 (patch)
tree1e245503f209e83f7c2fc8aa5233e7953e374738
parent5a11d13a748be6bbec0250f719a4daeb76033ad4 (diff)
downloadservo-jdm-patch-33.tar.gz
servo-jdm-patch-33.zip
More windows fixes.jdm-patch-33
-rw-r--r--python/servo/command_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 393808213a6..6e267526cfc 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -575,7 +575,7 @@ install them, let us know by filing a bug!")
return path.join(msvc_deps_dir, package, msvc_deps[package])
extra_path += [path.join(package_dir("cmake"), "bin")]
- extra_path += [path.join(package_dir("llvm"), "bin")]
+ #extra_path += [path.join(package_dir("llvm"), "bin")]
extra_path += [path.join(package_dir("ninja"), "bin")]
# Link openssl
env["OPENSSL_INCLUDE_DIR"] = path.join(package_dir("openssl"), "include")
@@ -589,7 +589,7 @@ install them, let us know by filing a bug!")
# Link autoconf 2.13, used for building SpiderMonkey
env["AUTOCONF"] = path.join(package_dir("moztools"), "msys", "local", "bin", "autoconf-2.13")
# Link LLVM
- env["LIBCLANG_PATH"] = path.join(package_dir("llvm"), "lib")
+ #env["LIBCLANG_PATH"] = path.join(package_dir("llvm"), "lib")
if not os.environ.get("NATIVE_WIN32_PYTHON"):
env["NATIVE_WIN32_PYTHON"] = sys.executable