You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/11/10 03:22:31 UTC

svn commit: r332201 - /spamassassin/trunk/masses/rule-qa/rule-hits-over-time

Author: jm
Date: Wed Nov  9 18:22:27 2005
New Revision: 332201

URL: http://svn.apache.org/viewcvs?rev=332201&view=rev
Log:
workaround PATH issue on solaris; do not use the broken default gnuplot

Modified:
    spamassassin/trunk/masses/rule-qa/rule-hits-over-time

Modified: spamassassin/trunk/masses/rule-qa/rule-hits-over-time
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/masses/rule-qa/rule-hits-over-time?rev=332201&r1=332200&r2=332201&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/rule-hits-over-time (original)
+++ spamassassin/trunk/masses/rule-qa/rule-hits-over-time Wed Nov  9 18:22:27 2005
@@ -66,7 +66,7 @@
 my $DEBUG_TMPDIR = 0;   # keep the tmpdir around after exiting, for debug
 
 # fix PATHs for sucky Solaris compatibility.
-$ENV{PATH} .= ":/local/gnuplot-4.0.0/bin:/opt/sfw/bin";
+$ENV{PATH} = "/local/gnuplot-4.0.0/bin:/opt/sfw/bin:".$ENV{PATH};
 $ENV{LD_LIBRARY_PATH} .= ":/local/gd-2.0.33/lib";
 
 my $rule_re = qr/[, ]${opt_rule}[, ]/;