From badd4036c57d0275ab25b266a48efbe870abc495 Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Tue, 16 Sep 2014 22:37:00 +0300 Subject: [PATCH] memtester: fix rebuild Do the edit of conf-* files only when 'cc' appears at the beginning of line, i.e. the files has not been edited. Otherwise, the 'cc' part of the cross toolchain gets expanded, leading to the following error on 'make memtester-rebuild': ./compile: line 3: /home/baruch/git/buildroot/output/host/usr/bin/i686-pc-linux-gnu-g/home/baruch/git/buildroot/output/host/usr/bin/i686-pc-linux-gnu-gcc: No such file or directory Makefile:82: recipe for target 'memtester.o' failed make[1]: *** [memtester.o] Error 127 Signed-off-by: Baruch Siach Signed-off-by: Peter Korsgaard --- package/memtester/memtester.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/memtester/memtester.mk b/package/memtester/memtester.mk index 900c10d2b..d12babca3 100644 --- a/package/memtester/memtester.mk +++ b/package/memtester/memtester.mk @@ -12,7 +12,7 @@ MEMTESTER_LICENSE_FILES = COPYING MEMTESTER_TARGET_INSTALL_OPTS = INSTALLPATH=$(TARGET_DIR)/usr define MEMTESTER_BUILD_CMDS - $(SED) "s,cc,$(TARGET_CC)," $(@D)/conf-* + $(SED) "s,^cc,$(TARGET_CC)," $(@D)/conf-* $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) endef