summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2011-12-05 10:32:04 +0100
committerMartin Pitt <martin.pitt@ubuntu.com>2011-12-05 10:32:04 +0100
commit8fc9a1d75056c910589587fffa81e2567259b33e (patch)
tree23781fca8f57ae0f3fd542ae5d8745871591258f
parent492a8c22838f52d579e4b9f31cd08f4dbcccb45c (diff)
Fix invocation of src/linux/integration-test
In Makefile.am "check", do not call the test suite through "python". Just call it directly and let the hashbang take care of the interpreter.
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a6b5d67..b8981ce 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -128,7 +128,7 @@ if UP_BUILD_TESTS
DBUS_LAUNCH=$(shell which dbus-launch)
check-local: upowerd
- env top_builddir=$(top_builddir) $(DBUS_LAUNCH) $${PYTHON:-python} $(srcdir)/linux/integration-test -v
+ env top_builddir=$(top_builddir) $(DBUS_LAUNCH) $(srcdir)/linux/integration-test -v
endif
endif