null+****@clear*****
null+****@clear*****
2011年 5月 28日 (土) 14:31:33 JST
Kouhei Sutou 2011-05-28 05:31:33 +0000 (Sat, 28 May 2011)
New Revision: e60b5ad0ae7949aaa6d3d1a523f8d91dd014efa0
Log:
[doc] fix force init condition.
Modified files:
build/makefiles/gettext.am
Modified: build/makefiles/gettext.am (+3 -2)
===================================================================
--- build/makefiles/gettext.am 2011-05-28 05:12:50 +0000 (87bb8f0)
+++ build/makefiles/gettext.am 2011-05-28 05:31:33 +0000 (e0df5de)
@@ -33,8 +33,9 @@ gettext: sphinx-ensure-updated
init: gettext
for po in $(po_files); do \
pot=`basename $${po} | sed -e 's,po$$,pot,g'`; \
- test "$(FORCE_INIT)" != "yes" -o -f $${po} && continue; \
- msginit --input=$${pot} --output-file=$${po} --locale=$(LOCALE); \
+ test "$(FORCE_INIT)" = "yes" -o ! -f $${po} && \
+ msginit --input=$${pot} --output-file=$${po} --locale=$(LOCALE); \
+ :; \
done
reinit: