From 2f64c7a8be665f3fb6b14721af872cd16c91d755 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Tue, 11 Jun 2019 19:05:21 +0200 Subject: [PATCH] package/git: fix build with curl curl-config path can be set through ac_cv_prog_CURL_CONFIG and not ac_cv_prog_curl_config Fixes: - http://autobuild.buildroot.org/results/4b22f761795d8760dac6ddfd40934259f0135a4d Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/git/git.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/git/git.mk b/package/git/git.mk index 8d1fcd2399..1b4a1a51e9 100644 --- a/package/git/git.mk +++ b/package/git/git.mk @@ -35,7 +35,7 @@ ifeq ($(BR2_PACKAGE_LIBCURL),y) GIT_DEPENDENCIES += libcurl GIT_CONF_OPTS += --with-curl GIT_CONF_ENV += \ - ac_cv_prog_curl_config=$(STAGING_DIR)/usr/bin/$(LIBCURL_CONFIG_SCRIPTS) + ac_cv_prog_CURL_CONFIG=$(STAGING_DIR)/usr/bin/$(LIBCURL_CONFIG_SCRIPTS) else GIT_CONF_OPTS += --without-curl endif -- 2.30.2