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

index 0ee5e61..76bdc65 100644 (file)
@@ -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
index 36a6130..5826557 100644 (file)
@@ -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);
        }
     }