From: Felix Fietkau Date: Thu, 5 Oct 2006 11:08:18 +0000 (+0000) Subject: fix gmp ccache breakage again (previous fix was removed in a cleanup) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fdedeckeh.git;a=commitdiff_plain;h=d658a1d68a8bb35cbfd779da2ea6327ff8ffe19e fix gmp ccache breakage again (previous fix was removed in a cleanup) SVN-Revision: 4924 --- diff --git a/openwrt/package/gmp/Makefile b/openwrt/package/gmp/Makefile index 43afab3c74..1470ead89a 100644 --- a/openwrt/package/gmp/Makefile +++ b/openwrt/package/gmp/Makefile @@ -32,13 +32,15 @@ endef define Build/Configure $(call Build/Configure/Default, \ --enable-shared \ - --enable-static \ + --enable-static, \ + CC="$(TARGET_CROSS)gcc" \ ) endef define Build/Compile $(call Build/Compile/Default, \ DESTDIR="$(PKG_INSTALL_DIR)" \ + CC="$(TARGET_CC)" \ all install \ ) endef