diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-02-25 16:31:01 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-02-25 16:31:01 -0400 |
commit | 7b269a14f5e041a747bf4071fda0b019b8dc8dd9 (patch) | |
tree | 7b450455b939d4b48136d21507f6b2996e18a166 /standalone/linux | |
parent | 073fa1887c3c0fe15f102a209d444fc1a7ffeba5 (diff) |
Linux standalone: Set LOCPATH=/dev/null to work around https://ghc.haskell.org/trac/ghc/ticket/7695
This prevents localization from working, but git-annex is not localized anyway.
Diffstat (limited to 'standalone/linux')
-rwxr-xr-x | standalone/linux/skel/runshell | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/standalone/linux/skel/runshell b/standalone/linux/skel/runshell index 886ffd714..f6db1da13 100755 --- a/standalone/linux/skel/runshell +++ b/standalone/linux/skel/runshell @@ -74,6 +74,10 @@ export ORIG_GCONV_PATH GCONV_PATH=$base/$(cat $base/gconvdir) export GCONV_PATH +# workaround for https://ghc.haskell.org/trac/ghc/ticket/7695 +LOCPATH=/dev/null +export LOCPATH + ORIG_GIT_EXEC_PATH="$GIT_EXEC_PATH" export ORIG_GIT_EXEC_PATH GIT_EXEC_PATH=$base/git-core |