Generate default.supp at compile-time, not configure-time.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8994 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/configure.in b/configure.in
index 1c6eff8..ace0161 100644
--- a/configure.in
+++ b/configure.in
@@ -209,6 +209,10 @@
 fi
 
 
+# This variable will collect the individual suppression files
+# depending on the results of autoconf
+DEFAULT_SUPP=""
+AC_SUBST(DEFAULT_SUPP)
 
 AC_MSG_CHECKING([for a supported OS])
 AC_SUBST(VG_OS)
@@ -458,10 +462,6 @@
 fi
 
 
-# This variable will collect the individual suppression files
-# depending on the results of autoconf
-DEFAULT_SUPP=""
-AC_SUBST(DEFAULT_SUPP)
 
 
 GLIBC_VERSION=""
@@ -1687,15 +1687,3 @@
          Default supp files: ${DEFAULT_SUPP}
 
 EOF
-
-cat<<EOF > default.supp
-# This is a generated file, composed of the following suppression rules:
-#
-#      ${DEFAULT_SUPP}
-#
-
-EOF
-
-for file in ${DEFAULT_SUPP} ; do
-    cat ${srcdir}/$file >> default.supp
-done