Ignore:
Timestamp:
Mar 12, 2018, 8:32:29 PM (7 years ago)
Author:
bird
Message:

Imported make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6) from https://git.savannah.gnu.org/git/make.git.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current/glob/glob.c

    r2596 r3138  
    378378      return -1;
    379379    }
     380
     381  /* POSIX requires all slashes to be matched.  This means that with
     382     a trailing slash we must match only directories.  */
     383  if (pattern[0] && pattern[strlen (pattern) - 1] == '/')
     384    flags |= GLOB_ONLYDIR;
    380385
    381386  if (flags & GLOB_BRACE)
Note: See TracChangeset for help on using the changeset viewer.