|
From: Jeremy F. <je...@go...> - 2005-03-04 08:30:48
|
CVS commit by fitzhardinge:
Don't build or test helgrind for now.
M +5 -3 Makefile.am 1.75
M +1 -1 valgrind.spec.in 1.20
--- valgrind/valgrind.spec.in #1.19:1.20
@@ -36,5 +36,5 @@
/usr/include/valgrind/valgrind.h
/usr/include/valgrind/memcheck.h
-/usr/include/valgrind/helgrind.h
+#/usr/include/valgrind/helgrind.h
/usr/include/valgrind/basic_types.h
/usr/include/valgrind/tool.h
--- valgrind/Makefile.am #1.74:1.75
@@ -6,6 +6,5 @@
## include must be first for tool.h
## addrcheck must come after memcheck, for mac_*.o
-SUBDIRS = include coregrind . docs tests auxprogs \
- memcheck \
+TOOLS = memcheck \
addrcheck \
cachegrind \
@@ -15,4 +14,7 @@
none
+SUBDIRS = include coregrind . docs tests auxprogs $(TOOLS)
+DIST_SUBDIRS = $(SUBDIRS) helgrind
+
SUPP_FILES = \
glibc-2.1.supp glibc-2.2.supp glibc-2.3.supp \
@@ -32,5 +34,5 @@
## Preprend @PERL@ because tests/vg_regtest isn't executable
regtest: check
- @PERL@ tests/vg_regtest --all
+ @PERL@ tests/vg_regtest $(TOOLS)
EXTRA_DIST = \
|