Commit c9bc62da authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

Fix #2690 (silent building man pages). close[t:2690]

git-svn-id: file:///svn/toku/tokudb@20860 c7de825b-a66e-492c-adef-691d508d4ae1
parent 1d4218ea
......@@ -23,7 +23,7 @@ endif
build: default;
tokudb.dvi: tokudb.texi $(MANPAGES_TEXI) $(SECTIONS_TEXI)
LC_ALL=C texi2dvi4a2ps -c tokudb.texi
LC_ALL=C texi2dvi4a2ps -c -q tokudb.texi
$(MANPAGES_POD): everyman.texi
......@@ -32,4 +32,4 @@ $(MANPAGES_POD): everyman.texi
%.3: %.pod
pod2man --center "TokuDB Programmer's Manual" --section 3 $< > $@
clean:
rm -f tokudb.aux tokudb.dvi tokudb.cp tokudb.fn tokudb.ky tokudb.log tokudb.pg tokudb.tmp tokudb.toc tokudb.tp tokudb.vr
rm -f tokudb.aux tokudb.dvi tokudb.cp tokudb.fn tokudb.ky tokudb.log tokudb.pg tokudb.tmp tokudb.toc tokudb.tp tokudb.vr *.3 *.pod
......@@ -240,10 +240,10 @@ function build() {
# man
if [ $dowindows -eq 0 ] ; then
runcmd 0 $productbuilddir/man/texi make -k -j$makejobs >>$tracefile 2>&1
runcmd 0 $productbuilddir/man/texi make -k -s -j$makejobs >>$tracefile 2>&1
else
# Don't use XFAIL because on cygwin man/texi just hangs
runcmd 0 $productbuilddir/man/texi echo SKIPPED make -k -j$makejobs >>$tracefile 2>&1
runcmd 0 $productbuilddir/man/texi echo SKIPPED make -k -s -j$makejobs >>$tracefile 2>&1
fi
# debug build
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment