diff options
author | Paul Smith <psmith@gnu.org> | 1999-06-14 05:26:28 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-06-14 05:26:28 +0000 |
commit | 187787286d9bc2f41696090917f47d9935651ddf (patch) | |
tree | ce669419e8b2442a20e001ef3ec32090e07c3812 /main.c | |
parent | fc0fe4103ac983d88b83dad0daf97664ffa8e04b (diff) | |
download | gunmake-187787286d9bc2f41696090917f47d9935651ddf.tar.gz |
* Various bug fixes.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1496,10 +1496,13 @@ int main (int argc, char ** argv) else { /* A normal makefile. We must die later. */ - error (NILF, "Makefile `%s' was not found", dep_name (d)); + error (NILF, "Makefile `%s' was not found", + dep_name (d)); any_failed = 1; } } + /* Reset this to empty so we get the right error message below. */ + read_makefiles = 0; if (any_remade) goto re_exec; |