From 2c79f8b75bd5bb0bb3bf054fb2b3cae6de382a7c Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 19 Apr 2007 21:41:43 +0100 Subject: [PATCH] Fix command line for running cairo-perf under valgrind. The CAIRO_PERF_ENVIRONMENT slipped into the middle of the command line instead of at the start. --- perf/Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/perf/Makefile.am b/perf/Makefile.am index 8e7d51364..16f48e2c6 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -85,13 +85,13 @@ CLEANFILES = \ index.html perf-valgrind: cairo-perf FORCE - $(top_srcdir)/libtool --mode=execute \ + $(CAIRO_PERF_ENVIRONMENT) $(top_srcdir)/libtool --mode=execute \ valgrind $(VALGRIND_MEMCHECK_FLAGS) $(EXTRA_VALGRIND_FLAGS) \ - $(CAIRO_PERF_ENVIRONMENT) ./cairo-perf 2>&1 | tee valgrind-log + ./cairo-perf 2>&1 | tee valgrind-log perf-callgrind: cairo-perf FORCE - $(top_srcdir)/libtool --mode=execute \ + $(CAIRO_PERF_ENVIRONMENT) $(top_srcdir)/libtool --mode=execute \ valgrind $(VALGRIND_CALLGRIND_FLAGS) $(EXTRA_VALGRIND_FLAGS) \ - $(CAIRO_PERF_ENVIRONMENT) ./cairo-perf + ./cairo-perf FORCE: