|
From: <sv...@va...> - 2009-06-25 23:46:29
|
Author: njn Date: 2009-06-26 00:46:23 +0100 (Fri, 26 Jun 2009) New Revision: 10378 Log: Fix 'make check' for automake-1.7. Fixes bugs 197898 and 197901. Modified: trunk/cachegrind/tests/Makefile.am trunk/exp-ptrcheck/tests/Makefile.am Modified: trunk/cachegrind/tests/Makefile.am =================================================================== --- trunk/cachegrind/tests/Makefile.am 2009-06-24 18:35:02 UTC (rev 10377) +++ trunk/cachegrind/tests/Makefile.am 2009-06-25 23:46:23 UTC (rev 10378) @@ -30,4 +30,5 @@ else myprint_so_LDFLAGS = $(AM_CFLAGS) -shared -fPIC endif +myprint_so_SOURCES = myprint.c # Only needed for automake-1.7. myprint_so_CFLAGS = $(AM_CFLAGS) -fPIC Modified: trunk/exp-ptrcheck/tests/Makefile.am =================================================================== --- trunk/exp-ptrcheck/tests/Makefile.am 2009-06-24 18:35:02 UTC (rev 10377) +++ trunk/exp-ptrcheck/tests/Makefile.am 2009-06-25 23:46:23 UTC (rev 10378) @@ -111,6 +111,7 @@ endif endif +preen_invars_so_so_SOURCES = preen_invars_so.c # For automake-1.7. preen_invars_so_so_CFLAGS = $(AM_CFLAGS) -fpic if VGCONF_PLATFORMS_INCLUDE_PPC64_AIX5 preen_invars_so_so_LDFLAGS = -fpic $(AM_FLAG_M3264_PRI) -shared |