From: Roland McGrath Date: Wed, 20 Apr 1994 22:42:32 +0000 (+0000) Subject: (read_makefile): Write no error msg for -include file. X-Git-Tag: 3.70.2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f2c10dedf0cdf46848c4361032decf00c126b748;p=platform%2Fupstream%2Fmake.git (read_makefile): Write no error msg for -include file. --- diff --git a/read.c b/read.c index b101d38..e232d99 100644 --- a/read.c +++ b/read.c @@ -576,7 +576,8 @@ read_makefile (filename, flags) files = next; if (! read_makefile (name, (RM_INCLUDED | RM_NO_TILDE - | (noerror ? RM_DONTCARE : 0)))) + | (noerror ? RM_DONTCARE : 0))) + && ! noerror) makefile_error (filename, lineno, "%s: %s", name, strerror (errno)); }