diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2008-04-30 12:44:48 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2008-04-30 12:44:48 +0000 |
commit | 111ab6f695a0db44a4f455e8c45431b0d1c00cd6 (patch) | |
tree | 006a1d544a92959d6ddb9a0891fe366d742cf6f4 /textproc/htmltolatex | |
parent | f9082c0cebf031d387dd57afe65693409d09fa1e (diff) | |
download | ports-111ab6f695a0db44a4f455e8c45431b0d1c00cd6.tar.gz ports-111ab6f695a0db44a4f455e8c45431b0d1c00cd6.zip |
Reportedly the newly-enabled self-tests fail during official
package-building. Make the test-target produce the tests' output on
stdout, so it is included in the traces -- this may help me debug the
problem remotely.
Notes
Notes:
svn path=/head/; revision=212357
Diffstat (limited to 'textproc/htmltolatex')
-rw-r--r-- | textproc/htmltolatex/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/htmltolatex/Makefile b/textproc/htmltolatex/Makefile index b5e716894ac5..60113e06f791 100644 --- a/textproc/htmltolatex/Makefile +++ b/textproc/htmltolatex/Makefile @@ -33,7 +33,11 @@ post-configure: ${WRKSRC}/${MAKEFILE} post-build test: - cd ${WRKSRC}/QA && ./run_tests + @if ! cd ${WRKSRC}/QA && ./run_tests; \ + then \ + ${CAT} ${WRKSRC}/QA/*.diff; \ + exit 1; \ + fi do-install: ${INSTALL_PROGRAM} ${WRKSRC}/h2l ${PREFIX}/bin |