Replace <sys/dir.h> (and <dirent.h>) with "gdb_dirent.h".
[deliverable/binutils-gdb.git] / ld / ldgram.y
index 718981281576188e9ca4d6d0ec1e99df39c901cf..806ea1c5f5c35e45938538515f17e9e717d9f2ce 100644 (file)
@@ -420,11 +420,11 @@ wildcard_spec:
 
 
 exclude_name_list:
-               exclude_name_list ',' wildcard_name
+               exclude_name_list wildcard_name
                        {
                          struct name_list *tmp;
                          tmp = (struct name_list *) xmalloc (sizeof *tmp);
-                         tmp->name = $3;
+                         tmp->name = $2;
                          tmp->next = $1;
                          $$ = tmp;     
                        }
This page took 0.024836 seconds and 4 git commands to generate.