diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-14 09:13:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-14 09:13:51 +0000 |
commit | 6a9a1c63011a507f2df611edb56287d890b97ae6 (patch) | |
tree | ee9c18c42869fdec0471eca671296ad9bfab92d1 /make/valgrind.mk | |
parent | 79815f7b4501b932dbe883d2eb975fe02cf298bd (diff) | |
download | buildroot-novena-6a9a1c63011a507f2df611edb56287d890b97ae6.tar.gz buildroot-novena-6a9a1c63011a507f2df611edb56287d890b97ae6.zip |
Fixup valgrind build
Diffstat (limited to 'make/valgrind.mk')
-rw-r--r-- | make/valgrind.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/make/valgrind.mk b/make/valgrind.mk index 0c8dc41a1..eb6966314 100644 --- a/make/valgrind.mk +++ b/make/valgrind.mk @@ -44,12 +44,12 @@ $(VALGRIND_DIR)/.configured: $(VALGRIND_DIR)/.patched ); touch $(VALGRIND_DIR)/.configured -$(VALGRIND_DIR)/valgrind.so: $(VALGRIND_DIR)/.configured +$(VALGRIND_DIR)/coregrind/valgrind.so: $(VALGRIND_DIR)/.configured $(MAKE) -C $(VALGRIND_DIR) -$(STRIP) --strip-unneeded $(VALGRIND_DIR)/*.so* - touch -c $(VALGRIND_DIR)/valgrind.so + touch -c $(VALGRIND_DIR)/coregrind/valgrind.so -$(TARGET_DIR)/usr/bin/valgrind: $(VALGRIND_DIR)/valgrind.so +$(TARGET_DIR)/usr/bin/valgrind: $(VALGRIND_DIR)/coregrind/valgrind.so $(MAKE) \ prefix=$(TARGET_DIR)/usr \ exec_prefix=$(TARGET_DIR)/usr \ @@ -66,10 +66,10 @@ $(TARGET_DIR)/usr/bin/valgrind: $(VALGRIND_DIR)/valgrind.so includedir=$(TARGET_DIR)/usr/include \ -C $(VALGRIND_DIR) install; rm -rf $(TARGET_DIR)/usr/share/doc/valgrind - mkdir -p $(TARGET_DIR)/etc/default - cp $(VALGRIND_DIR)/valgrind.default $(TARGET_DIR)/etc/default/valgrind - mkdir -p $(TARGET_DIR)/usr/lib/valgrind - cp $(VALGRIND_DIR)/woody.supp $(TARGET_DIR)/usr/lib/valgrind/ + #mkdir -p $(TARGET_DIR)/etc/default + #cp $(VALGRIND_DIR)/valgrind.default $(TARGET_DIR)/etc/default/valgrind + #mkdir -p $(TARGET_DIR)/usr/lib/valgrind + #cp $(VALGRIND_DIR)/woody.supp $(TARGET_DIR)/usr/lib/valgrind/ touch -c $(TARGET_DIR)/usr/bin/valgrind valgrind: $(TARGET_DIR)/usr/bin/valgrind |