diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-19 02:50:52 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-05-19 02:50:52 +0000 |
commit | 4274b69a125dfbb49aff57920bd8d5511e8219f7 (patch) | |
tree | 632bfd132e571f11c40cbc33ccc6da9a21677aac /build/module.mk | |
parent | de7842fdd3beaa694cc0cba2275962ab11f1e07b (diff) |
build: also prepare i18n directories
Diffstat (limited to 'build/module.mk')
-rw-r--r-- | build/module.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/module.mk b/build/module.mk index 70d54dc85..ecc7a92f2 100644 --- a/build/module.mk +++ b/build/module.mk @@ -25,8 +25,9 @@ luasource: cp -pR htdocs/* dist$(HTDOCS) 2>/dev/null || true for i in $$(find dist -name .svn -or -name .gitignore); do rm -rf $$i || true; done ifneq ($(PO),) + mkdir -p dist$(LUCI_I18NDIR) for file in $(PO); do \ - cp $(HOST)/lua-po/$$file.$(if $(PO_LANG),$(PO_LANG),*).lua dist$(LUCI_MODULEDIR)/i18n/; \ + cp $(HOST)/lua-po/$$file.$(if $(PO_LANG),$(PO_LANG),*).lua dist$(LUCI_I18NDIR)/ 2>/dev/null || true; \ done endif |