diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-10-31 14:31:46 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-10-31 14:31:46 -0400 |
commit | 1d6c743e4ccbc3e8abb5138335bc32ad51245942 (patch) | |
tree | 48c7725003dae41b84aa425a60144d8e5dedcd30 /Makefile | |
parent | e99b6f3e0d03553a8daf0839219da3c40f048f9c (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-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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)" |