There are still some issues here - specifically with the C dtbuilder/dtcodegen catalogs. They may be broken due to dtbuilder not being built yet. Also, once dtinfo can be built, the msgs and app-defaults for it should be re-enabled. I also see gencat coredumping in localization/ while doing a multicore (-jX) make. Regular single core builds seem to work fine.
14 lines
304 B
Plaintext
14 lines
304 B
Plaintext
# message files for non-C locales - ie: local .msg files. So much
|
|
# nicer :)
|
|
|
|
TMPLOCAL_DEST = $(shell ls *.msg |grep -v libAB |sed -e 's/.msg/.cat/g')
|
|
|
|
BUILT_SOURCES = $(TMPLOCAL_DEST)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
SUFFIXES = .msg .cat
|
|
|
|
.msg.cat:
|
|
$(RM) $@
|
|
LANG=$(LANG) $(GENCAT) -o $@ $^ || $(RM) $@
|