forked from Imagelibrary/binutils-gdb
* ldlang.c (walk_wild): Allow * to glob '/' in wildcarded match.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2006-08-29 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* ldlang.c (walk_wild): Allow * to glob '/' in wildcarded match.
|
||||
|
||||
2006-08-28 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* scripttempl/elf.sc: Ensure that crtbegin and crtend entries will
|
||||
|
||||
@@ -791,7 +791,7 @@ walk_wild (lang_wild_statement_type *s, callback_t callback, void *data)
|
||||
{
|
||||
LANG_FOR_EACH_INPUT_STATEMENT (f)
|
||||
{
|
||||
if (fnmatch (file_spec, f->filename, FNM_FILE_NAME) == 0)
|
||||
if (fnmatch (file_spec, f->filename, 0) == 0)
|
||||
walk_wild_file (s, f, callback, data);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user