[BACK]Return to var.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/var.c between version 1.88 and 1.89

version 1.88, 2011/06/20 19:05:33 version 1.89, 2012/03/22 13:47:12
Line 959 
Line 959 
                                 case IMPSRC_INDEX:                                  case IMPSRC_INDEX:
                                         Fatal(                                          Fatal(
 "Using $< in a non-suffix rule context is a GNUmake idiom (line %lu of %s)",  "Using $< in a non-suffix rule context is a GNUmake idiom (line %lu of %s)",
                                             n->lineno, n->fname);                                              n->origin.lineno, n->origin.fname);
                                         break;                                          break;
                                 default:                                  default:
                                         Error(                                          Error(
 "Using undefined dynamic variable $%s (line %lu of %s)",  "Using undefined dynamic variable $%s (line %lu of %s)",
                                             varnames[idx], n->lineno, n->fname);                                              varnames[idx], n->origin.lineno,
                                               n->origin.fname);
                                         break;                                          break;
                                 }                                  }
                         }                          }

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89