|
From: <sv...@va...> - 2009-07-13 22:20:08
|
Author: njn Date: 2009-07-13 23:20:00 +0100 (Mon, 13 Jul 2009) New Revision: 10440 Log: Fix a couple of tests that could be built with the wrong options, including the -m32/-m64 option. Modified: trunk/memcheck/tests/Makefile.am trunk/tests/Makefile.am Modified: trunk/memcheck/tests/Makefile.am =================================================================== --- trunk/memcheck/tests/Makefile.am 2009-07-13 10:00:06 UTC (rev 10439) +++ trunk/memcheck/tests/Makefile.am 2009-07-13 22:20:00 UTC (rev 10440) @@ -237,6 +237,8 @@ if VGCONF_OS_IS_DARWIN atomic_incs_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic +else +atomic_incs_CFLAGS = $(AM_CFLAGS) endif deep_templates_SOURCES = deep_templates.cpp Modified: trunk/tests/Makefile.am =================================================================== --- trunk/tests/Makefile.am 2009-07-13 10:00:06 UTC (rev 10439) +++ trunk/tests/Makefile.am 2009-07-13 22:20:00 UTC (rev 10440) @@ -27,5 +27,7 @@ if VGCONF_OS_IS_DARWIN x86_amd64_features_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic +else +x86_amd64_features_CFLAGS = $(AM_CFLAGS) endif |