Putting "dist_" in front of a "_DATA" variable means it is included in "make
dist".  This avoids the need to put it in "EXTRA_DIST", and saves a few lines
in all the docs Makefile.am files.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2614 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/Makefile.am b/Makefile.am
index 5453784..6435b86 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -23,7 +23,7 @@
 	glibc-2.1.supp glibc-2.2.supp glibc-2.3.supp \
 	xfree-3.supp xfree-4.supp
 
-val_DATA = $(SUPP_FILES) default.supp
+dist_val_DATA = $(SUPP_FILES) default.supp
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = valgrind.pc
@@ -38,7 +38,7 @@
 regtest: check
 	@PERL@ tests/vg_regtest --all
 
-EXTRA_DIST = $(val_DATA) \
+EXTRA_DIST = \
 	FAQ.txt \
 	ACKNOWLEDGEMENTS \
 	README_PACKAGERS \