diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-11 13:00:24 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-11-11 13:00:24 +0100 |
commit | 1a915b263e0aec38cdffdc708210147a24e455cd (patch) | |
tree | c6d36b60bae595f0ff21d6273ca9c9c29c952ae5 /debian | |
parent | 865dd829c572bc16445b86606a89723f8716056d (diff) | |
download | libayatana-appindicator-1a915b263e0aec38cdffdc708210147a24e455cd.tar.gz libayatana-appindicator-1a915b263e0aec38cdffdc708210147a24e455cd.tar.bz2 libayatana-appindicator-1a915b263e0aec38cdffdc708210147a24e455cd.zip |
debian/rules: Use backticks instead of $(<cmd>) (which is not a GNU make way of invoking commands).
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/rules b/debian/rules index 17a3bd6..057d717 100755 --- a/debian/rules +++ b/debian/rules @@ -75,23 +75,23 @@ override_dh_install: override_dh_auto_test: $(FLAVORS:%=dotest-%) dotest-%: - mkdir -p $(pwd)/debian/tmphome - HOME=$(pwd)/debian/tmphome dh_auto_test dh_auto_test --builddirectory=build/$* -- || true + mkdir -p `pwd`/debian/tmphome + 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 + rm -Rf `pwd`/debian/tmphome dotest-gtk2: $(PY_VERSIONS:%=dotestgtk2-%) # GTK2 flavor test was run on a per-python-version basis. dotestgtk2-%: - mkdir -p $(pwd)/debian/tmphome + mkdir -p `pwd`/debian/tmphome PYTHON=`which $*` \ - HOME=$(pwd)/debian/tmphome 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 + rm -Rf `pwd`/debian/tmphome override_dh_auto_clean: dh_auto_clean |