diff options
author | Roland McGrath <roland@redhat.com> | 1994-04-22 21:57:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-04-22 21:57:47 +0000 |
commit | e6bce5ef88ed59adb5b6a20569d0969cba45bb33 (patch) | |
tree | 8c928300623efcf40633f8aabf2f9e29e88cc79b | |
parent | bdff21b09a2530ed4eecf0f16114c9f90735fa1e (diff) | |
download | gunmake-e6bce5ef88ed59adb5b6a20569d0969cba45bb33.tar.gz |
(read_makefile): Fix `override define' parsing to skip whitespace after
`define' properly.
-rw-r--r-- | read.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -434,7 +434,7 @@ read_makefile (filename, flags) in_ignored_define = 1; else { - p2 = end_of_token (p2); + p2 = next_token (p2 + 6); /* 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 |