diff options
author | Andrew Santosa <santosa_1999@yahoo.com> | 2018-05-15 03:01:53 +0000 |
---|---|---|
committer | Andrew Santosa <santosa_1999@yahoo.com> | 2018-05-15 03:01:53 +0000 |
commit | 5b7e7d82041218bc2b6ed0585ae1f6641e027669 (patch) | |
tree | af85ae13b64efb77b67e276eb51d883720f91356 /po/Makefile.in.in | |
parent | Update ChangeLog (diff) | |
download | w3m-5b7e7d82041218bc2b6ed0585ae1f6641e027669.tar.gz w3m-5b7e7d82041218bc2b6ed0585ae1f6641e027669.zip |
Added check for : command not producing .gmo file in po/Makefile.in.in
Diffstat (limited to '')
-rw-r--r-- | po/Makefile.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index ef8bd94..9d9691e 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -89,7 +89,7 @@ CATALOGS = @CATALOGS@ @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o $${lang}.gmo $${lang}.po"; \ - cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics --verbose -o t-$${lang}.gmo $${lang}.po && if [ x$(GMSGFMT) != x: ] ; then mv t-$${lang}.gmo $${lang}.gmo ; fi .sin.sed: sed -e '/^#/d' $< > t-$@ |