|
From: <sv...@va...> - 2009-02-09 03:25:26
|
Author: njn Date: 2009-02-09 03:25:04 +0000 (Mon, 09 Feb 2009) New Revision: 9125 Log: Don't install unnecessary .supp files (part 2 of 2). Modified: trunk/Makefile.am trunk/NEWS Modified: trunk/Makefile.am =================================================================== --- trunk/Makefile.am 2009-02-09 02:59:48 UTC (rev 9124) +++ trunk/Makefile.am 2009-02-09 03:25:04 UTC (rev 9125) @@ -30,7 +30,10 @@ exp-ptrcheck.supp DEFAULT_SUPP_FILES = @DEFAULT_SUPP@ -dist_val_DATA = $(SUPP_FILES) default.supp +# We include all .supp files in the distribution, but only install +# default.supp. +dist_val_DATA = default.supp +dist_noinst_DATA = $(SUPP_FILES) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = valgrind.pc Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2009-02-09 02:59:48 UTC (rev 9124) +++ trunk/NEWS 2009-02-09 03:25:04 UTC (rev 9125) @@ -1,4 +1,12 @@ +Release 3.5.0 (???) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +* Previously, all the distributed suppression (*.supp) files were installed. + Now, only default.supp is installed. This should not affect users as the + other installed suppression files were not read. + + + Release 3.4.0 (2 January 2009) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3.4.0 is a feature release with many significant improvements and the |