From 1c988358155b3224fcd8563ebb907d103480e29f Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 20 Sep 2015 11:49:22 +0300 Subject: [PATCH] Guile: don't insist on Gnuplot (Fixes #664) Many of the scripts require Gnuplot, but some don't, so don't add a hard requirement for it. --- mu/mu-cmd-script.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu/mu-cmd-script.c b/mu/mu-cmd-script.c index 830c2fc3..808cf1b6 100644 --- a/mu/mu-cmd-script.c +++ b/mu/mu-cmd-script.c @@ -149,7 +149,7 @@ get_script_info_list (const char *muhome, GError **err) static gboolean check_params (MuConfig *opts, GError **err) { - if (!mu_util_supports (MU_FEATURE_GUILE | MU_FEATURE_GNUPLOT)) { + if (!mu_util_supports (MU_FEATURE_GUILE)) { mu_util_g_set_error (err, MU_ERROR_IN_PARAMETERS, "the 'script' command is not available " "in this version of mu");