diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-09-17 10:02:38 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-09-17 10:02:38 +0200 |
commit | b6d189cab739eb23fc8d86c051b4081d52705ab0 (patch) | |
tree | 2a2f196404010de2126ca0842e15a7c61e2c11b6 /buildlib/po4a_manpage.mak | |
parent | 6422a70461fe89041d6112fed831b1c07cd45a3f (diff) |
* buildlib/debiandoc.mak, buildlib/po4a_manpage.mak:
- ensure that the build fails if documentation building fails
Diffstat (limited to 'buildlib/po4a_manpage.mak')
-rw-r--r-- | buildlib/po4a_manpage.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 6eec9d031..11dc11d28 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -27,7 +27,7 @@ veryclean: veryclean/$(LOCAL) $($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< # why xsltproc doesn't respect the -o flag here??? + $(XSLTPROC) -o $@ $(STYLESHEET) $< || exit 200 # why xsltproc doesn't respect the -o flag here??? test -f $(subst .$(LC),,$@) || echo FIXME: xsltproc respect the -o flag now, workaround can be removed mv -f $(subst .$(LC),,$@) $@ |