From 0e8f23fa06d3211d0aacda896216678bb7c62c71 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 14 Jun 2015 10:51:48 -0400 Subject: [PATCH] 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. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 15f5b0d6d6..c6d306b87f 100644 --- a/Makefile +++ b/Makefile @@ -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 \