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-08-29 13:44:54 +03:00
parent 9303ce340f
commit 4e1ec15a7c

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"