diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-06-14 10:51:48 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-06-14 10:51:48 -0400 |
commit | e746ce0a380cf92a8a179d650e6fb21e50c62cae (patch) | |
tree | fdd62994b4b55843d4d1a247e0c97e4c829eb709 /Makefile | |
parent | bd44fdbe7e67da43aebab9b88af9a37ec0556bdd (diff) |
set LC_ALL in ikiwiki build to ensure deterministic build in other locales
smcv suggeted using C.UTF-8, but I want this to work beyond Debian, so went
with C, which seems to work ok.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -73,7 +73,8 @@ man: mkdir -p man docs: mans - TZ=UTC $(IKIWIKI) doc html -v --wikiname git-annex --plugin=goodstuff \ + LC_ALL=C TZ=UTC $(IKIWIKI) doc html -v --wikiname git-annex \ + --plugin=goodstuff \ --no-usedirs --disable-plugin=openid --plugin=sidebar \ --underlaydir=/dev/null --set deterministic=1 \ --disable-plugin=shortcut --disable-plugin=smiley \ |