Skip to content

Commit

Permalink
Fix BoringSSL include path
Browse files Browse the repository at this point in the history
A build error on Mac is caused due to the build using OpenSSL headers
instead of BoringSSL. Attempt to fix that.
  • Loading branch information
lwthiker committed Sep 2, 2023
1 parent cb26a3f commit dbd5bb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dbd5bb0

Please sign in to comment.