diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2018-05-05 21:45:32 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2018-05-05 21:45:32 +0000 |
commit | c8528a3b670c2ca0b1c606281440d54e585653ef (patch) | |
tree | 14a6eb0e6677f018a10efb8f54dd414547a0a77a /math | |
parent | www/foswiki: fix build with APACHE=off (diff) |
Explicitely disable docs build as it fails when it's attempted (FreeBSD 11+)
perl ./doc/interpreter/mk-qthelp.pl octave.html doc/interpreter/octave_interpreter && \
qcollectiongenerator -qt4 doc/interpreter/octave_interpreter.qhcp -o doc/interpreter/octave_interpreter.qhc >/dev/null && \
rm -f doc/interpreter/octave_interpreter.qhcp doc/interpreter/octave_interpreter.qhp
qcollectiongenerator: could not find a Qt installation of '4'
Reported by: pkg-fallout
With hat: portmgr
Notes
Notes:
svn path=/head/; revision=469168
Diffstat (limited to 'math')
-rw-r--r-- | math/octave/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index aa8d78369b61..f200083d90b2 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -64,6 +64,7 @@ CONFIGURE_ARGS= --host=${GNU_HOST} \ --with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \ --with-lapack="${LAPACKLIB}" \ --enable-shared \ + --disable-docs \ --disable-jit \ --disable-openmp \ --with-qt=4 \ |