diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2015-07-24 14:10:22 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-07-30 14:19:08 -0700 |
commit | 63d39a464f31ad05e2b5359d1d6a085aff087ae3 (patch) | |
tree | 54c97994c11cc3885d5f38a06f4cf20798e8c381 /python/servo/command_base.py | |
parent | 3792bd7611df7343c1bad6119a07bd14296c9ba6 (diff) | |
download | servo-63d39a464f31ad05e2b5359d1d6a085aff087ae3.tar.gz servo-63d39a464f31ad05e2b5359d1d6a085aff087ae3.zip |
Upgrade cocoa, openssl, and selectors
Diffstat (limited to 'python/servo/command_base.py')
-rw-r--r-- | python/servo/command_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 7c41fa42196..b712a1d87b3 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -285,7 +285,7 @@ class CommandBase(object): "%(gonkdir)s/out/target/product/%(gonkproduct)s/obj/lib" ) % {"gonkdir": env["GONKDIR"], "gonkproduct": env["GONK_PRODUCT"]} env["OPENSSL_LIB_DIR"] = openssl_dir - env['OPENSSL_INCLUDE_DIR'] = path.join(openssl_dir, "include") + env['OPENSSL_INCLUDE_DIR'] = path.join(env["GONKDIR"], "external/openssl/include") # FIXME: These are set because they are the variable names that # android-rs-glue expects. However, other submodules have makefiles that |