Skip to content

Commit 2a5fc60

Browse files
committed
Glob expansion on Cygwin should be case-sensitive
Fixes #1277
1 parent d0fdd78 commit 2a5fc60

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/lib/libast/port/astconf.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,8 @@ static Feature_t dynamic[] = {
146146
#endif
147147
NULL, NULL, 9, CONF_AST, 0, OP_libsuffix},
148148
#define OP_path_attributes (OP_libsuffix + 1)
149-
{&dynamic[OP_path_attributes + 1], "PATH_ATTRIBUTES",
150-
#if __CYGWIN__
151-
"c",
152-
#else
153-
"",
154-
#endif
155-
"", 0, 15, CONF_AST, CONF_READONLY, OP_path_attributes},
149+
{&dynamic[OP_path_attributes + 1], "PATH_ATTRIBUTES", "", "", 0, 15, CONF_AST, CONF_READONLY,
150+
OP_path_attributes},
156151
#define OP_path_resolve (OP_path_attributes + 1)
157152
{&dynamic[OP_path_resolve + 1], "PATH_RESOLVE", "", "physical", "metaphysical", 12, CONF_AST, 0,
158153
OP_path_resolve},

0 commit comments

Comments
 (0)