mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Install all .mo files on all targets
Linux didn't have a locale install target, and Windows didn't install aliased locale files. Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
40ae90920a
commit
9c62e223d3
1 changed files with 8 additions and 3 deletions
11
Makefile
11
Makefile
|
@ -150,6 +150,11 @@ install: $(NAME)
|
|||
$(INSTALL) -d -m 755 $(XSLTDIR); \
|
||||
$(INSTALL) -m 644 $(XSLTFILES) $(XSLTDIR); \
|
||||
fi
|
||||
for LOC in $(wildcard share/locale/*/LC_MESSAGES); do \
|
||||
$(INSTALL) -d -m 755 $(prefix)/$$LOC; \
|
||||
$(INSTALL) $$LOC/subsurface.mo $(prefix)/$$LOC/subsurface.mo; \
|
||||
done
|
||||
|
||||
|
||||
install-macosx: $(NAME)
|
||||
$(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/Resources
|
||||
|
@ -184,9 +189,9 @@ install-cross-windows: $(NAME)
|
|||
$(INSTALL) -d -m 755 $(WINDOWSSTAGING)/$$MSG;\
|
||||
$(INSTALL) $(CROSS_PATH)/$$MSG/* $(WINDOWSSTAGING)/$$MSG;\
|
||||
done
|
||||
for MSG in $(MSGOBJS); do\
|
||||
$(INSTALL) -d -m 755 $$(dirname $(WINDOWSSTAGING)/$$MSG);\
|
||||
$(INSTALL) $$MSG $(WINDOWSSTAGING)/$$MSG;\
|
||||
for LOC in $(wildcard share/locale/*/LC_MESSAGES); do \
|
||||
$(INSTALL) -d -m 755 $(WINDOWSSTAGING)/$$LOC; \
|
||||
$(INSTALL) $$LOC/subsurface.mo $(WINDOWSSTAGING)/$$LOC/subsurface.mo; \
|
||||
done
|
||||
|
||||
file.o: file.c dive.h file.h
|
||||
|
|
Loading…
Add table
Reference in a new issue