From 6ce736a58c8973ceba56bc95f11118b7c1351f11 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 4 Aug 2009 21:42:48 +0200 Subject: sed: fix compilation with external toolchains Since CC is already passed in TARGET_CONFIGURE_OPTS at ./configure time, there's no point in overriding it with a wrong value at compilation time. This breaks external toolchain builds since CC=$(TARGET_CC) is wrong because it excludes the mandatory --sysroot option. Fixes bug #525 Signed-off-by: Thomas Petazzoni --- package/sed/sed.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/sed') diff --git a/package/sed/sed.mk b/package/sed/sed.mk index 9caefed49..07f4b32c6 100644 --- a/package/sed/sed.mk +++ b/package/sed/sed.mk @@ -135,7 +135,7 @@ $(SED_DIR2)/.configured: $(SED_DIR2)/.unpacked touch $@ $(SED_DIR2)/$(SED_BINARY): $(SED_DIR2)/.configured - $(MAKE) CC=$(TARGET_CC) -C $(SED_DIR2) + $(MAKE) -C $(SED_DIR2) # This stuff is needed to work around GNU make deficiencies sed-target_binary: $(SED_DIR2)/$(SED_BINARY) -- cgit v1.2.3