From: Nicholas Nethercote Date: Wed, 21 Jan 2009 22:52:39 +0000 (+0000) Subject: Merge part of r8943 from the Darwin branch -- use VGA_* instead of VGP_* for X-Git-Tag: svn/VALGRIND_3_5_0~1068 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5cf0a9d64dbf02208dd1d8538f630d69c6b800a6;p=thirdparty%2Fvalgrind.git Merge part of r8943 from the Darwin branch -- use VGA_* instead of VGP_* for selecting the arch-specific tests. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9015 --- diff --git a/none/tests/Makefile.am b/none/tests/Makefile.am index 3c9c00bf8d..9c4662e241 100644 --- a/none/tests/Makefile.am +++ b/none/tests/Makefile.am @@ -3,16 +3,16 @@ include $(top_srcdir)/Makefile.flags.am SUBDIRS = . -if VGP_X86_LINUX +if VGA_X86 SUBDIRS += x86 endif -if VGP_AMD64_LINUX +if VGA_AMD64 SUBDIRS += amd64 endif -if VGP_PPC32_LINUX +if VGA_PPC32 SUBDIRS += ppc32 endif -if VGP_PPC64_LINUX +if VGA_PPC64 SUBDIRS += ppc64 endif