diff options
author | Motonobu Takahashi <monyo@samba.org> | 2001-09-29 16:07:01 +0000 |
---|---|---|
committer | Motonobu Takahashi <monyo@samba.org> | 2001-09-29 16:07:01 +0000 |
commit | b4dc3776739118f6b8865660da022fc9185dc6b9 (patch) | |
tree | bd7e428719fa936feeca259c8a2ee2f98a8d354a /source3/po | |
parent | a28dd18fe7d88f7d229f2746ac05f9f9e7978cfe (diff) | |
download | samba-b4dc3776739118f6b8865660da022fc9185dc6b9.tar.gz samba-b4dc3776739118f6b8865660da022fc9185dc6b9.tar.xz samba-b4dc3776739118f6b8865660da022fc9185dc6b9.zip |
not to creat gmo files from po files during making
this is because some platforms such as HP-UX do not have any msgfmt
command.
if someone updates po file,
then he has to update gmo files manually and commit.
(This used to be commit ca350fdf0343b0bc5e78a35a7a2345ada8aca410)
Diffstat (limited to 'source3/po')
-rw-r--r-- | source3/po/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/po/Makefile.in b/source3/po/Makefile.in index f24aaba1f81..c7f47eaf313 100644 --- a/source3/po/Makefile.in +++ b/source3/po/Makefile.in @@ -79,7 +79,7 @@ INSTOBJEXT = .mo rm -f $@ && $(GENCAT) $@ $*.msg -all: all-yes +all: cat-id-tbl.c all-yes: cat-id-tbl.c $(CATALOGS) all-no: @@ -229,6 +229,8 @@ update-po: Makefile fi; \ done +update-gmo: $(CATALOGS) + POTFILES: POTFILES.in ( if test 'x$(srcdir)' != 'x.'; then \ posrcprefix='$(top_srcdir)/'; \ |