From 5cf0a9d64dbf02208dd1d8538f630d69c6b800a6 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 21 Jan 2009 22:52:39 +0000 Subject: [PATCH] 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 --- none/tests/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.47.3