Fix BoringSSL include path

A build error on Mac is caused due to the build using OpenSSL headers
instead of BoringSSL. Attempt to fix that.
This commit is contained in:
lwthiker
2023-09-02 16:56:54 +03:00
parent cb26a3f8e0
commit dbd5bb0a36
+1 -1
View File
@@ -423,7 +423,7 @@ $(CURL_VERSION)/.chrome: $(chrome_libs) $(CURL_VERSION).tar.xz $(CURL_VERSION)/.
config_flags="$$config_flags --with-ca-path=$(with_ca_path)"; \
fi; \
add_libs="-pthread"; \
add_cflags="-I$(boringssl_install_dir)"; \
add_cflags="-I$(boringssl_install_dir)/include"; \
}
echo "Configuring curl with: $$config_flags"