aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-10-31 14:31:46 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-10-31 14:31:46 -0400
commit1d6c743e4ccbc3e8abb5138335bc32ad51245942 (patch)
tree48c7725003dae41b84aa425a60144d8e5dedcd30 /Makefile
parente99b6f3e0d03553a8daf0839219da3c40f048f9c (diff)
Linux standalone: Fix location of locale files in the bundle.
The Makefile was putting them in git-annex.linux/i18n/i18n, and so I18NPATH did not point to the files. I think that on close enough to Debian systems, localedef then fell back to using the system-wide locale files, while on other systems it would fail to generate locales.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 04d36612f..e2413f3c7 100644
--- a/Makefile
+++ b/Makefile
@@ -144,8 +144,7 @@ linuxstandalone-nobuild: Build/Standalone Build/LinuxMkLibs
install -d "$(LINUXSTANDALONE_DEST)/templates"
install -d "$(LINUXSTANDALONE_DEST)/magic"
cp /usr/share/file/magic.mgc "$(LINUXSTANDALONE_DEST)/magic"
- install -d "$(LINUXSTANDALONE_DEST)/i18n"
- cp /usr/share/i18n -a "$(LINUXSTANDALONE_DEST)/i18n"
+ cp /usr/share/i18n -a "$(LINUXSTANDALONE_DEST)"
./Build/LinuxMkLibs "$(LINUXSTANDALONE_DEST)"