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.

Location:
vendor/gnumake/current/glob
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current/glob/ChangeLog

    r2596 r3138  
     12013-10-20  Paul Smith  <psmith@gnu.org>
     2
     3        * glob.c (glob): Cherry-pick a471e96a5352a5f0bde6d32dd36d33524811a2b1
     4        from git://sourceware.org/git/glibc.git to fix SV 18123,
     5        https://sourceware.org/bugzilla/show_bug.cgi?id=10278
     6
    172008-09-28  Juan Manuel Guerrero  <juan.guerrero@gmx.de>
    28
  • 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)
  • vendor/gnumake/current/glob/glob.h

    r1989 r3138  
    5757/* This is a guess.  */
    5858/*hb
    59  *      Conflicts with DECCs aready defined type __size_t.
     59 *      Conflicts with DECCs already defined type __size_t.
    6060 *      Defining an own type with a name beginning with '__' is no good.
    6161 *      Anyway if DECC is used and __SIZE_T is defined then __size_t is
Note: See TracChangeset for help on using the changeset viewer.