diff options
author | Roland McGrath <roland@redhat.com> | 1996-07-26 00:33:25 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-07-26 00:33:25 +0000 |
commit | 08905cdcbcdf3bef972d4567ac5c84ceae0bb1de (patch) | |
tree | 230e6d7c4214283068cf6f9831d3de3ff2291725 | |
parent | 4b72e38789a34aa0f8f25ab26b0523e475710718 (diff) | |
download | gunmake-08905cdcbcdf3bef972d4567ac5c84ceae0bb1de.tar.gz |
Thu Jul 25 19:53:31 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* main.c (define_makeflags): Back up P to point at null terminator
when killing final space and dash before setting MFLAGS.
-rw-r--r-- | main.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -2040,8 +2040,11 @@ define_makeflags (all, makefile) /* No flags. */ flagstring[0] = '\0'; else if (p[-1] == '-') - /* Kill the final space and dash. */ - p[-2] = '\0'; + { + /* Kill the final space and dash. */ + p -= 2; + *p = '\0'; + } else /* Terminate the string. */ *p = '\0'; |