diff options
author | Roland McGrath <roland@redhat.com> | 1992-04-01 09:42:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-04-01 09:42:11 +0000 |
commit | a7ec3f0576b97d4d93a7487fb1c43be2768f3280 (patch) | |
tree | a541e0e269d59ff9a4eab7f297eeffbefbabfdb0 | |
parent | 008dab1b259c1d032a0b3e073e0e67a4615f8412 (diff) | |
download | gunmake-a7ec3f0576b97d4d93a7487fb1c43be2768f3280.tar.gz |
Formerly read.c.~27~
-rw-r--r-- | read.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* Copyright (C) 1988, 1989, 1990, 1991 Free Software Foundation, Inc. +/* Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc. This file is part of GNU Make. GNU Make is free software; you can redistribute it and/or modify @@ -127,7 +127,11 @@ read_all_makefiles (makefiles) MAKEFILES is updated for finding remaining tokens. */ p = value; while ((name = find_next_token (&p, &length)) != 0) - read_makefile (name, 1); + { + if (*p != '\0') + *p++ = '\0'; + read_makefile (name, 1); + } free (value); } |