summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Watson <cjwatson@ubuntu.com>2017-02-19 18:47:17 +0000
committerColin Watson <cjwatson@ubuntu.com>2017-02-19 18:47:17 +0000
commitb5da323aac611655d1d00dea6d6df6cef68c456c (patch)
tree449edd7c8829773ca4dcfd796618e165315b9172
parentdcee4599cfe8325eded20096a92c96c2936cf99d (diff)
Unset LANGUAGE when running tests, to avoid a build failure in Debian's reproducible-builds environment.
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules2
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index becaf5a..d02d2b7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+git-build-recipe (0.3.5) UNRELEASED; urgency=medium
+
+ * Unset LANGUAGE when running tests, to avoid a build failure in Debian's
+ reproducible-builds environment.
+
+ -- Colin Watson <cjwatson@ubuntu.com> Sun, 19 Feb 2017 18:46:14 +0000
+
git-build-recipe (0.3.4) unstable; urgency=medium
[ Dmitry Shachnev ]
diff --git a/debian/rules b/debian/rules
index e46e016..4a74de8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,4 +3,4 @@
dh $@ --with python3 --buildsystem pybuild
override_dh_auto_test:
- LC_ALL=C.UTF-8 dh_auto_test
+ env -u LANGUAGE LC_ALL=C.UTF-8 dh_auto_test