|
From: <sv...@va...> - 2010-09-10 14:57:56
|
Author: sewardj Date: 2010-09-10 15:57:46 +0100 (Fri, 10 Sep 2010) New Revision: 11352 Log: Fix a couple of make-dist bugs, caused by recently added ppc32/64 tests. Modified: trunk/memcheck/tests/Makefile.am trunk/memcheck/tests/ppc32/Makefile.am trunk/memcheck/tests/ppc64/Makefile.am Modified: trunk/memcheck/tests/Makefile.am =================================================================== --- trunk/memcheck/tests/Makefile.am 2010-09-10 14:56:18 UTC (rev 11351) +++ trunk/memcheck/tests/Makefile.am 2010-09-10 14:57:46 UTC (rev 11352) @@ -34,7 +34,7 @@ SUBDIRS += amd64-linux endif -DIST_SUBDIRS = x86 amd64 linux darwin x86-linux amd64-linux . +DIST_SUBDIRS = x86 amd64 ppc32 ppc64 linux darwin x86-linux amd64-linux . dist_noinst_SCRIPTS = \ filter_addressable \ Modified: trunk/memcheck/tests/ppc32/Makefile.am =================================================================== --- trunk/memcheck/tests/ppc32/Makefile.am 2010-09-10 14:56:18 UTC (rev 11351) +++ trunk/memcheck/tests/ppc32/Makefile.am 2010-09-10 14:57:46 UTC (rev 11352) @@ -1,6 +1,8 @@ -noinst_SCRIPTS = filter_stderr +include $(top_srcdir)/Makefile.tool-tests.am +dist_noinst_SCRIPTS = filter_stderr + EXTRA_DIST = $(noinst_SCRIPTS) \ power_ISA2_05.stderr.exp power_ISA2_05.stdout.exp power_ISA2_05.vgtest Modified: trunk/memcheck/tests/ppc64/Makefile.am =================================================================== --- trunk/memcheck/tests/ppc64/Makefile.am 2010-09-10 14:56:18 UTC (rev 11351) +++ trunk/memcheck/tests/ppc64/Makefile.am 2010-09-10 14:57:46 UTC (rev 11352) @@ -1,6 +1,8 @@ -noinst_SCRIPTS = filter_stderr +include $(top_srcdir)/Makefile.tool-tests.am +dist_noinst_SCRIPTS = filter_stderr + EXTRA_DIST = $(noinst_SCRIPTS) \ power_ISA2_05.stderr.exp power_ISA2_05.stdout.exp power_ISA2_05.vgtest |