|
From: Nicholas N. <nj...@ca...> - 2004-09-11 18:27:56
|
CVS commit by nethercote: Arch-abstraction: - previous Cachegrind rearrangement broke "make distcheck"; this commit fixed it again. M +1 -2 Makefile.tool-flags.am 1.2 M +2 -0 cachegrind/Makefile.am 1.48 M +1 -1 cachegrind/x86/Makefile.am 1.2 --- valgrind/Makefile.tool-flags.am #1.1:1.2 @@ -2,6 +2,5 @@ ## otherwise it will not work if builddir != srcdir. add_includes = -I$(top_builddir)/include -I$(top_srcdir)/include \ - -I$(top_srcdir)/include/$(VG_ARCH) \ - -I./$(VG_ARCH) + -I$(top_srcdir)/include/$(VG_ARCH) AM_CPPFLAGS = $(add_includes) --- valgrind/cachegrind/Makefile.am #1.47:1.48 @@ -6,4 +6,6 @@ SUBDIRS = $(VG_ARCH) . tests docs +AM_CPPFLAGS += -I$(top_srcdir)/cachegrind/$(VG_ARCH) + bin_SCRIPTS = cg_annotate --- valgrind/cachegrind/x86/Makefile.am #1.1:1.2 @@ -1,5 +1,5 @@ include $(top_srcdir)/Makefile.tool-flags.am -AM_CPPFLAGS += -I.. +AM_CPPFLAGS += -I$(top_srcdir)/cachegrind noinst_LIBRARIES = libcgarch.a |