diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-11 13:55:07 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-11 13:55:07 +0100 |
commit | d9c905e4f9a2aa6f7f03e9eb8057e31e25953fab (patch) | |
tree | c6d36b60bae595f0ff21d6273ca9c9c29c952ae5 /debian | |
parent | 1abf3ea10b03c7ca38efc9f8b0985a276b388f51 (diff) | |
download | libayatana-appindicator-d9c905e4f9a2aa6f7f03e9eb8057e31e25953fab.tar.gz libayatana-appindicator-d9c905e4f9a2aa6f7f03e9eb8057e31e25953fab.tar.bz2 libayatana-appindicator-d9c905e4f9a2aa6f7f03e9eb8057e31e25953fab.zip |
Revert "debian/rules: Make sure the kill command is found in ..."
This reverts commit 1abf3ea10b03c7ca38efc9f8b0985a276b388f51.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 8459c08..057d717 100755 --- a/debian/rules +++ b/debian/rules @@ -76,7 +76,7 @@ override_dh_auto_test: $(FLAVORS:%=dotest-%) dotest-%: mkdir -p `pwd`/debian/tmphome - HOME=`pwd`/debian/tmphome PATH=/usr/bin:/bin:/usr/sbin:/sbin dh_auto_test dh_auto_test --builddirectory=build/$* -- || true + HOME=`pwd`/debian/tmphome dh_auto_test dh_auto_test --builddirectory=build/$* -- || true # View test's log file for better debugging of problems when built in clean chroots. if [ -e build/$*/tests/test-suite.log ]; then cat build/$*/tests/test-suite.log; fi rm -Rf `pwd`/debian/tmphome @@ -88,7 +88,7 @@ dotest-gtk2: $(PY_VERSIONS:%=dotestgtk2-%) dotestgtk2-%: mkdir -p `pwd`/debian/tmphome PYTHON=`which $*` \ - HOME=`pwd`/debian/tmphome PATH=/usr/bin:/bin:/usr/sbin:/sbin dh_auto_test --builddirectory=build/gtk2 -- || true + HOME=`pwd`/debian/tmphome dh_auto_test --builddirectory=build/gtk2 -- || true # View test's log file for better debugging of problems when built in clean chroots. if [ -e build/gtk2/tests/test-suite.log ]; then cat build/gtk2/tests/test-suite.log; fi rm -Rf `pwd`/debian/tmphome |