diff options
author | Roland McGrath <roland@redhat.com> | 1993-10-25 19:25:17 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-10-25 19:25:17 +0000 |
commit | 3aeb946943174a34239e6cc633be76c7085061da (patch) | |
tree | d6ff3e9df2863922b2a25a42fd9cfab6e07646b0 | |
parent | 9012e6a254c2663b18d4120d06ccd3f1a36976fe (diff) | |
download | gunmake-3aeb946943174a34239e6cc633be76c7085061da.tar.gz |
Formerly read.c.~68~
-rw-r--r-- | read.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1537,7 +1537,11 @@ parse_file_seq (stringp, stopchar, size, strip) lastn = n; n = n->next; } - if (n != 0) + if (n != 0 + /* Ignore something starting with `(', as that cannot actually + be an archive-member reference (and treating it as such + results in an empty file name, which causes much lossage). */ + && n->name[0] != '(') { /* N is the first element in the archive group. Its name looks like "lib(mem" (with no closing `)'). */ |