2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-04 05:16:45 +00:00

98_SVG: fix gnuplot. Perhaps it would be better to delete it.

git-svn-id: https://svn.fhem.de/fhem/trunk@7075 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-11-27 20:59:58 +00:00
parent d7ff46dd8e
commit 66059ef8bf

View File

@ -866,6 +866,7 @@ SVG_doShowLog($$$$;$$)
my $gplot_script = SVG_substcfg(0, $wl, $cfg, $plot, $file, $tmpfile);
$plot =~ s/ls \w+//g;
open(FH, "|gnuplot >> $errfile 2>&1");# feed it to gnuplot
print FH $gplot_script, $xrange, $plot;
close(FH);
@ -892,6 +893,7 @@ SVG_doShowLog($$$$;$$)
my $gplot_script = SVG_substcfg(0, $wl, $cfg, $plot, $file, $tmpfile);
$plot =~ s/ls \w+//g;
open(FH, "|gnuplot >> $errfile 2>&1");# feed it to gnuplot
print FH $gplot_script, $xrange, $plot;
close(FH);