diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-10-04 16:37:43 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-10-04 16:37:43 -0400 |
commit | 218ceacf5dffd328fcc08e6e775f43cffa887238 (patch) | |
tree | 0340232fd51eb59cec8d48624814f5e32351a2c4 /Makefile | |
parent | 2c2b8f0ec2ce32550ac79ae7c367104f68ec37b6 (diff) |
Linux standalone: Include locale files in the bundle, and generate locale definition files for the locales in use when starting runshell.
Currently only done for utf-8 locales because the charset can easily be
told for those. Other locales don't include the charset in their name.
The locale definition is generated under git-annex.linux/locales.
So, this only works if the user can write there.
If locale generation fails for any reason, it's silently skipped.
The git-annex-standalone.deb installs the bundle under /usr, so this locale
generation won't work for non-root users.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -143,6 +143,8 @@ 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" ./Build/LinuxMkLibs "$(LINUXSTANDALONE_DEST)" |