# HG changeset patch # User jwe # Date 813457331 0 # Node ID d508e2cab748c3a4e0fef380494e22b1b198c5ab # Parent 6935e817fd25c1e1ba45ad132709e520833f2170 [project @ 1995-10-12 00:22:11 by jwe] diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -AC_REVISION($Revision: 1.141 $) +AC_REVISION($Revision: 1.142 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -756,7 +756,8 @@ AC_CHECK_PROG(GNUPLOT_BINARY, gnuplot, gnuplot, []) if test -n "$GNUPLOT_BINARY"; then AC_MSG_CHECKING([to see if your gnuplot supports multiplot]) - if test -z "`echo 'set multiplot' | gnuplot 2>&1`"; then + if test -z "`echo 'set term unknown; set multiplot' | \ + $GNUPLOT_BINARY 2>&1`"; then AC_MSG_RESULT([yes]) AC_DEFINE(GNUPLOT_HAS_MULTIPLOT, 1) else