|
From: <sv...@va...> - 2009-08-15 23:26:24
|
Author: njn Date: 2009-08-16 00:26:12 +0100 (Sun, 16 Aug 2009) New Revision: 10824 Log: Fix "make check" on Darwin. Modified: trunk/helgrind/tests/Makefile.am Modified: trunk/helgrind/tests/Makefile.am =================================================================== --- trunk/helgrind/tests/Makefile.am 2009-08-15 23:05:34 UTC (rev 10823) +++ trunk/helgrind/tests/Makefile.am 2009-08-15 23:26:12 UTC (rev 10824) @@ -146,3 +146,10 @@ LDADD = -lpthread +if VGCONF_OS_IS_DARWIN +annotate_hbefore_CFLAGS = $(AM_CFLAGS) -mdynamic-no-pic +else +annotate_hbefore_CFLAGS = $(AM_CFLAGS) +endif + + |