* ldlang.c (walk_wild): Allow * to glob '/' in wildcarded match.
authorNathan Sidwell <nathan@codesourcery.com>
Tue, 29 Aug 2006 11:09:04 +0000 (11:09 +0000)
committerNathan Sidwell <nathan@codesourcery.com>
Tue, 29 Aug 2006 11:09:04 +0000 (11:09 +0000)
ChangeLog.csl
ld/ldlang.c

index d011d37..c8980ee 100644 (file)
@@ -1,5 +1,9 @@
 2006-08-29  Nathan Sidwell  <nathan@codesourcery.com>
 
+       * ldlang.c (walk_wild): Allow * to glob '/' in wildcarded match.
+
+2006-08-29  Nathan Sidwell  <nathan@codesourcery.com>
+
        ld/
        Backport 2006-08-28  Alan Modra  <amodra@bigpond.net.au>
        * scripttempl/elf.sc: Ensure that crtbegin and crtend entries will
index 8764a70..a51fb88 100644 (file)
@@ -669,7 +669,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);
        }
     }