diff options
author | Roland McGrath <roland@redhat.com> | 1994-03-04 05:10:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-03-04 05:10:22 +0000 |
commit | 5d3189c952993f244470910d0ad208d4d6866166 (patch) | |
tree | d0aa7e7a854ebc1db2a6d1482cf6170715a3ee44 /read.c | |
parent | c71c43c0b53e9108b150afd842f7f38034ad5d08 (diff) | |
download | gunmake-5d3189c952993f244470910d0ad208d4d6866166.tar.gz |
Formerly read.c.~75~
Diffstat (limited to 'read.c')
-rw-r--r-- | read.c | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -412,7 +412,13 @@ read_makefile (filename, flags) else { p2 = next_token (p + 6); - p = end_of_token (p2); + /* Let the variable name be the whole rest of the line, + with trailing blanks stripped (comments have already been + removed), so it could be a complex variable/function + reference that might contain blanks. */ + p = index (p2, '\0'); + while (isblank (p[-1])) + --p; lineno = do_define (p2, p - p2, o_file, lineno, infile, filename); } @@ -431,8 +437,14 @@ read_makefile (filename, flags) { unsigned int len; p2 = end_of_token (p2); - p = find_next_token (&p2, &len); - lineno = do_define (p, len, o_override, + /* Let the variable name be the whole rest of the line, + with trailing blanks stripped (comments have already been + removed), so it could be a complex variable/function + reference that might contain blanks. */ + p = index (p2, '\0'); + while (isblank (p[-1])) + --p; + lineno = do_define (p2, p - p2, o_override, lineno, infile, filename); } } |