[cairo-commit] perf/Makefile.am

Chris Wilson ickle at kemper.freedesktop.org
Thu Apr 19 13:42:27 PDT 2007


 perf/Makefile.am |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

New commits:
diff-tree 2c79f8b75bd5bb0bb3bf054fb2b3cae6de382a7c (from 3631c11eb4ab49f2bb3b9ef0478e5516793f221f)
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Thu Apr 19 21:41:43 2007 +0100

    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.

diff --git a/perf/Makefile.am b/perf/Makefile.am
index 8e7d513..16f48e2 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:
 


More information about the cairo-commit mailing list