diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-20 19:00:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-20 19:00:47 +0000 |
commit | 57cd47737fce9f316e1e1faba52eff7cd14f93c2 (patch) | |
tree | 6be6b5e94a4d3aba217f0af7e747f4610d80c66c /Makefile.in | |
parent | 8ac90051e66e423886555bdc98c9b5301e414dfd (diff) | |
download | newlib-57cd47737fce9f316e1e1faba52eff7cd14f93c2.zip newlib-57cd47737fce9f316e1e1faba52eff7cd14f93c2.tar.gz newlib-57cd47737fce9f316e1e1faba52eff7cd14f93c2.tar.bz2 |
Use msgfmt to generate .gmo files from .po files for a distribution.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 986cbd5..f625266 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1864,6 +1864,11 @@ do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex else true; fi chmod -R og=u . || chmod og=u `find . -print` # + # Create .gmo files from .po files. + for f in `find . -name '*.po' -type f -print`; do \ + msgfmt -o `echo $$f | sed -e 's/\.po$$/.gmo/'` $$f ; \ + done + # -rm -f $(PACKAGE)-$(VER) ln -s proto-toplev $(PACKAGE)-$(VER) |