From: Eric Andersen Date: Sat, 1 Nov 2003 05:59:43 +0000 (-0000) Subject: do not build valgrind for non-i386 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06d2c518561a4db2bd2f3156fed0be111f747966;p=buildroot.git do not build valgrind for non-i386 --- diff --git a/make/valgrind.mk b/make/valgrind.mk index c7d89261c2..924d211621 100644 --- a/make/valgrind.mk +++ b/make/valgrind.mk @@ -72,7 +72,11 @@ $(TARGET_DIR)/usr/bin/valgrind: $(VALGRIND_DIR)/coregrind/valgrind.so #cp $(VALGRIND_DIR)/woody.supp $(TARGET_DIR)/usr/lib/valgrind/ touch -c $(TARGET_DIR)/usr/bin/valgrind +ifeq ($(ARCH),i386) valgrind: $(TARGET_DIR)/usr/bin/valgrind +else +valgrind: +endif valgrind-clean: $(MAKE) -C $(VALGRIND_DIR) clean