mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
Formerly read.c.~73~
This commit is contained in:
parent
b5665419ba
commit
bb55335906
1 changed files with 2 additions and 3 deletions
5
read.c
5
read.c
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993
|
||||
/* Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994
|
||||
Free Software Foundation, Inc.
|
||||
This file is part of GNU Make.
|
||||
|
||||
|
@ -360,7 +360,7 @@ read_makefile (filename, flags)
|
|||
remove_comments (collapsed);
|
||||
|
||||
p = collapsed;
|
||||
while (isspace (*p))
|
||||
while (*p == ' ')
|
||||
++p;
|
||||
/* We cannot consider a line containing just a tab to be empty
|
||||
because it might constitute an empty command for a target. */
|
||||
|
@ -430,7 +430,6 @@ read_makefile (filename, flags)
|
|||
continue;
|
||||
}
|
||||
|
||||
|
||||
if (ignoring)
|
||||
/* Ignore the line. We continue here so conditionals
|
||||
can appear in the middle of a rule. */
|
||||
|
|
Loading…
Reference in a new issue