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.
This commit is contained in:
Chris Wilson 2007-04-19 21:41:43 +01:00
parent 3631c11eb4
commit 2c79f8b75b

View file

@ -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: