removed extra $ from from PERLCC test
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 8 May 2005 15:07:27 +0000 (15:07 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Sun, 8 May 2005 15:07:27 +0000 (15:07 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@510 a5681a0c-68f1-0310-ab6d-d61299d08faa

configure.ac
src/rrd_graph_helper.c

index 8791c2a..6820e07 100644 (file)
@@ -311,7 +311,7 @@ else
        AC_MSG_RESULT($perlcc)
        if test ! -x $perlcc; then
               AC_PATH_PROG(PERLCC, ${perlcc}, no)
-              if test -x $"x$PERLCC" = "xno"; then
+              if test -x "x$PERLCC" = "xno"; then
                   AC_MSG_WARN([
 I would not find the Compiler ($perlcc) that was originally used to compile your
 perl binary. You should either make sure that this compiler is available on your
index d0aaf4b..5cadb08 100644 (file)
@@ -298,6 +298,11 @@ rrd_parse_PVHLAST(char *line, unsigned int *eaten, graph_desc_t *gdp, image_desc
 
     dprintf("- parsing '%s'\n",&line[*eaten]);
 
+    /* have simpler code in the drawing section */
+    if ( gdp->gf == GF_STACK ){
+           gdp->stack=1;
+    }
+
     i=scan_for_col(&line[*eaten],MAX_VNAME_LEN+9,tmpstr);
     if (line[*eaten+i]!='\0' && line[*eaten+i]!=':') {
        rrd_set_error("Cannot parse line '%s'",line);
@@ -455,10 +460,6 @@ rrd_parse_PVHLAST(char *line, unsigned int *eaten, graph_desc_t *gdp, image_desc
     (*eaten)++;
     dprintf("- parsing '%s'\n",&line[*eaten]);
 
-    /* have simpler code in the drawing section */
-    if ( gdp->gf == GF_STACK ){
-           gdp->stack=1;
-    }
     return 0;
 }