aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/curl.BUILD
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2017-01-31 10:03:51 -0500
committerGravatar gunan <gunan@google.com>2017-02-11 01:16:20 -0800
commit246ac732b8a3b7737efc38914dd2280e5164d563 (patch)
treeb2f06263780b5945ade77fddeb38da7c6f6df2e2 /third_party/curl.BUILD
parente5fa958210951cb46482275a10225d79bb1706c8 (diff)
Update proto library reference and make curl forward/backward compatible
I'm working on fixing https://github.com/bazelbuild/bazel/issues/1681, which will change the way Bazel organizes the execution root. This has two implications for tensorflow: * The protobuf library needs to be updated to a version that works with old/new versions of Bazel (older versions won't be able to find external protos). * The curl library needs to use ../curl as an include prefix in new versions of Bazel and external/curl in old versions. This patch should be forward/backward compatible.
Diffstat (limited to 'third_party/curl.BUILD')
-rw-r--r--third_party/curl.BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/curl.BUILD b/third_party/curl.BUILD
index c1c0f69dc0..a4d017feb8 100644
--- a/third_party/curl.BUILD
+++ b/third_party/curl.BUILD
@@ -232,7 +232,7 @@ cc_library(
],
copts = select({
":windows": [
- "/Iexternal/curl/lib",
+ "/I{%prefix%}/curl/lib",
"/DHAVE_CONFIG_H",
"/DCURL_DISABLE_FTP",
"/DCURL_DISABLE_NTLM",
@@ -245,7 +245,7 @@ cc_library(
"/D_USING_V110_SDK71_",
],
"//conditions:default": [
- "-Iexternal/curl/lib",
+ "-I{%prefix%}/curl/lib",
"-D_GNU_SOURCE",
"-DHAVE_CONFIG_H",
"-DCURL_DISABLE_FTP",
@@ -387,12 +387,12 @@ cc_binary(
],
copts = select({
":windows": [
- "/Iexternal/curl/lib",
+ "/I{%prefix%}/curl/lib",
"/DHAVE_CONFIG_H",
"/DCURL_DISABLE_LIBCURL_OPTION",
],
"//conditions:default": [
- "-Iexternal/curl/lib",
+ "-I{%prefix%}/curl/lib",
"-D_GNU_SOURCE",
"-DHAVE_CONFIG_H",
"-DCURL_DISABLE_LIBCURL_OPTION",