Hi! I figured that I could get rid of the block in the build process by reducing the minumum threshold for translation and ensuring that po4a-* is called at all places with -k; a patch is attached to get here. But I then run into some issues with apt-howto.ks.sgml.
bin/debiandoc2latexpdf -l $(echo ko | bin/getlocale) apt-howto.ko.sgml debiandoc2latexpdf: ERROR: apt-howto.ko.pdf could not be generated properly debiandoc2latexpdf: rerun with the -v option to found out why debiandoc2latexpdf: or check the log file apt-howto.ko.log make[1]: *** [apt-howto.ko.pdf] Error 1 make[1]: Leaving directory `/tmp/buildd/apt-howto-2.0.2' make: *** [build-stamp] Error 2 Anyway, hope the patch attached helps make some progress. -- Kumar Appaiah, 458, Jamuna Hostel, Indian Institute of Technology Madras, Chennai - 600 036
diff -urN apt-howto-2.0.2/Makefile apt-howto-2.0.2.0/Makefile --- apt-howto-2.0.2/Makefile 2007-08-27 20:18:49.000000000 +0530 +++ apt-howto-2.0.2.0/Makefile 2007-08-27 14:04:29.000000000 +0530 @@ -39,7 +39,7 @@ #PUBLISHDIR := /org/www.debian.org/www/doc/manuals PUBLISHDIR := ~/public_html -KEEP := 40 +KEEP := 35 PODIR := po4a/po PO_LANGS := $(basename $(notdir $(wildcard $(PODIR)/*.po))) NORMALIZED_PO_LANGS = $(shell echo $(PO_LANGS) | sed 's/pt_BR/pt-br/') @@ -194,7 +194,7 @@ $(MANUAL).%.sgml: $(MANUAL).en.sgml $(PODIR)/%.po update-%.po: $(MANUAL).en.sgml - po4a-updatepo -f sgml -m $(MANUAL).en.sgml -p $(PODIR)/$*.po + po4a-updatepo -k $(KEEP) -f sgml -m $(MANUAL).en.sgml -p $(PODIR)/$*.po # =================================================================== # # Build rule part: Web publish #