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

Diff for /src/usr.bin/make/arch.c between version 1.86 and 1.87

version 1.86, 2015/12/11 21:37:03 version 1.87, 2016/10/21 16:12:38
Line 320 
Line 320 
                         Lst_Init(&members);                          Lst_Init(&members);
   
                         Dir_Expandi(member, emember, defaultPath, &members);                          Dir_Expandi(member, emember, defaultPath, &members);
                         while ((m = (char *)Lst_DeQueue(&members)) != NULL) {                          while ((m = Lst_DeQueue(&members)) != NULL) {
                                 Buf_Addi(expand, lib, elib);                                  Buf_Addi(expand, lib, elib);
                                 Buf_AddChar(expand, '(');                                  Buf_AddChar(expand, '(');
                                 Buf_AddString(expand, m);                                  Buf_AddString(expand, m);
Line 875 
Line 875 
                 char *nameStart;                  char *nameStart;
                 char *nameEnd;                  char *nameEnd;
   
                 pgn = (GNode *)Lst_Datum(ln);                  pgn = Lst_Datum(ln);
   
                 if (pgn->type & OP_ARCHV) {                  if (pgn->type & OP_ARCHV) {
                         /* If the parent is an archive specification and is                          /* If the parent is an archive specification and is

Legend:
Removed from v.1.86  
changed lines
  Added in v.1.87