From 6269efff62d2e8d3a64f7599f1a73e9d84645a2e Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 15 Jan 2008 13:16:47 +0000 Subject: [PATCH 1/1] fix curl compile SVN-Revision: 10204 --- libs/curl/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libs/curl/Makefile b/libs/curl/Makefile index 8f3abf2da5..0f80736581 100644 --- a/libs/curl/Makefile +++ b/libs/curl/Makefile @@ -78,14 +78,17 @@ CONFIGURE_ARGS += \ CONFIGURE_VARS += \ LDFLAGS="$$$$LDFLAGS -lcrypto -lssl -lz" \ - + CC="$(filter-out ccache,$(TARGET_CC))" define Build/Configure $(call Build/Configure/Default,,bash) endef define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + CC="$(TARGET_CC)" \ + install endef define Build/InstallDev -- 2.30.2