diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-10-19 23:31:36 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2007-10-19 23:31:36 +0100 |
commit | c70c2cf6d6a71df54515175af0cb1651b67bdb86 (patch) | |
tree | 4766d08750aab604bff651501e2b48df817b7a40 /perf | |
parent | 76e3b3cdc3dda986d420637cfc2445aca481a863 (diff) |
[Makefile.am] Fix ${top_srcdir}/libtool
libtool exists in the top level build directory, but in a couple of
places we refer to the top level source directory.
Diffstat (limited to 'perf')
-rw-r--r-- | perf/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am index 7814be5ec..4701abf56 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -104,14 +104,14 @@ CLEANFILES = \ check-valgrind perf-valgrind: $(MAKE) $(AM_MAKEFLAGS) check \ TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) \ - $(top_srcdir)/libtool --mode=execute \ + $(top_builddir)/libtool --mode=execute \ valgrind $(VALGRIND_MEMCHECK_FLAGS) $(EXTRA_VALGRIND_FLAGS)' \ | tee valgrind-log perf-callgrind: $(MAKE) $(AM_MAKEFLAGS) check \ TESTS_ENVIRONMENT='$(TESTS_ENVIRONMENT) \ - $(top_srcdir)/libtool --mode=execute \ + $(top_builddir)/libtool --mode=execute \ valgrind $(VALGRIND_CALLGRIND_FLAGS) $(EXTRA_VALGRIND_FLAGS)' .PHONY: perf html check-valgrind perf-valgrind perf-callgrind |