changeset 1556:d508e2cab748

[project @ 1995-10-12 00:22:11 by jwe]
author jwe
date Thu, 12 Oct 1995 00:22:11 +0000
parents 6935e817fd25
children c694fe5956e3
files configure.in
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Wed Oct 11 05:49:55 1995 +0000
+++ b/configure.in	Thu Oct 12 00:22:11 1995 +0000
@@ -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