diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-04-05 11:19:39 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-05 23:59:20 +0200 |
commit | 66828f4fd3c19bcefeb421a414629e3dc80ef960 (patch) | |
tree | 96dc4762e034bd393ee8c8b6750326339eeaf70c /lib/Makefile.netware | |
parent | f50bc76c99bb6fd8be257de4c0544837d8f997b6 (diff) | |
download | curl-66828f4fd3c19bcefeb421a414629e3dc80ef960.tar.gz |
lib: never define CURL_CA_BUNDLE with a getenv
- it breaks the build (since 6de756c9b1de34b7a1)
- it's not documented and not consistent across platforms
- the curl tool does that getenv magic
Bug: https://github.com/curl/curl/commit/6de756c#r38127030
Reported-by: Gisle Vanem
Closes #5187
Diffstat (limited to 'lib/Makefile.netware')
-rw-r--r-- | lib/Makefile.netware | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index 752d3d6fb..2c16adbac 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -669,8 +669,6 @@ endif @echo $(DL)#endif$(DL) >> $@ ifdef CABUNDLE @echo $(DL)#define CURL_CA_BUNDLE "$(CABUNDLE)"$(DL) >> $@ -else - @echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@ endif $(EXPORTF): $(CURL_INC)/curl/curl.h $(CURL_INC)/curl/easy.h $(CURL_INC)/curl/multi.h $(CURL_INC)/curl/mprintf.h |