diff options
author | Lee Garrett <lgarrett@rocketjump.eu> | 2023-11-10 13:40:40 +0100 |
---|---|---|
committer | Lee Garrett <lgarrett@rocketjump.eu> | 2023-11-10 13:40:40 +0100 |
commit | 77810b83a4b35ccc572640dfab87ce45af1c9fc4 (patch) | |
tree | b79fcc2d843b43ff453b3e7892278d702fbe5995 | |
parent | fe350cae397e9f8841902ea9f3e84422e7358cfa (diff) | |
download | debian-ansible-core-77810b83a4b35ccc572640dfab87ce45af1c9fc4.zip |
Enforce locale to ensure it builds reproducibly
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index ec65e522..3b65f216 100755 --- a/debian/rules +++ b/debian/rules @@ -9,6 +9,8 @@ export ANSIBLE_SKIP_CONFLICT_CHECK=1 # tmpdir is needed during docs build, as ~ isn't writeable in sbuild export ANSIBLE_LOCAL_TEMP=tmp/ +export LC_ALL=C.UTF-8 + %: # dh $@ --with python3,sphinxdoc --buildsystem=pybuild dh $@ --with python3 --buildsystem=pybuild |