summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-05 11:08:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-10-05 11:08:18 +0000
commit2347229ddd150b425c9617dabfe6ae7e2bcc53eb (patch)
tree17686a7a31f393700d2a99dab937cbf76a039d70 /package
parentf204c0275d8d04227ec5aaae31698f11cd4990b2 (diff)
fix gmp ccache breakage again (previous fix was removed in a cleanup)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4924 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/gmp/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/gmp/Makefile b/package/gmp/Makefile
index 43afab3c7..1470ead89 100644
--- a/package/gmp/Makefile
+++ b/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