diff options
author | Roland McGrath <roland@redhat.com> | 1993-04-15 22:29:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-04-15 22:29:47 +0000 |
commit | c190a98796e9fb819bedab0b1b2250711aeb6a24 (patch) | |
tree | d6a04649eb335074b4f85c6d520af9384e13d933 | |
parent | a03f503fb72e84f379effcfcadc08d2641d7980a (diff) | |
download | gunmake-c190a98796e9fb819bedab0b1b2250711aeb6a24.tar.gz |
Formerly function.c.~24~
-rw-r--r-- | function.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1141,8 +1141,12 @@ string_glob (line) register struct nameseq *chain; register unsigned int idx; - chain = multi_glob (parse_file_seq (&line, '\0', sizeof (struct nameseq)), - sizeof (struct nameseq)); + chain = multi_glob (parse_file_seq (&line, '\0', sizeof (struct nameseq), 0), + sizeof (struct nameseq), + /* We do not want parse_file_seq to strip `./'s. + That would break examples like: + $(patsubst ./%.c,obj/%.o,$(wildcard ./*.c)) */ + 0); if (result == 0) { |