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

Diff for /src/usr.bin/make/suff.c between version 1.61 and 1.62

version 1.61, 2007/09/16 09:46:14 version 1.62, 2007/09/16 09:49:24
Line 777 
Line 777 
     for (ln = Lst_First(&sufflist); ln != NULL; ln = Lst_Adv(ln)) {      for (ln = Lst_First(&sufflist); ln != NULL; ln = Lst_Adv(ln)) {
         s = (Suff *)Lst_Datum(ln);          s = (Suff *)Lst_Datum(ln);
         if (!Lst_IsEmpty(&s->searchPath)) {          if (!Lst_IsEmpty(&s->searchPath)) {
 #ifdef INCLUDES  
             if (s->flags & SUFF_INCLUDE) {              if (s->flags & SUFF_INCLUDE) {
                 Dir_Concat(&inIncludes, &s->searchPath);                  Dir_Concat(&inIncludes, &s->searchPath);
             }              }
 #endif /* INCLUDES */  
 #ifdef LIBRARIES  
             if (s->flags & SUFF_LIBRARY) {              if (s->flags & SUFF_LIBRARY) {
                 Dir_Concat(&inLibs, &s->searchPath);                  Dir_Concat(&inLibs, &s->searchPath);
             }              }
 #endif /* LIBRARIES */  
             Dir_Concat(&s->searchPath, dirSearchPath);              Dir_Concat(&s->searchPath, dirSearchPath);
         } else          } else
             Lst_Clone(&s->searchPath, dirSearchPath, Dir_CopyDir);              Lst_Clone(&s->searchPath, dirSearchPath, Dir_CopyDir);

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62