From: Paul Smith Date: Sat, 11 Jul 2015 17:55:45 +0000 (-0400) Subject: * remake.c (update_file): [SV 44742] Keep double-colon rule status. X-Git-Tag: 4.1.90~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9efd477e9872f67143bc456a61b8349ee5b4f4d8;p=thirdparty%2Fmake.git * remake.c (update_file): [SV 44742] Keep double-colon rule status. Fix suggested by Everett Boyer --- diff --git a/remake.c b/remake.c index 0888cfff..dc5ce2d0 100644 --- a/remake.c +++ b/remake.c @@ -349,7 +349,7 @@ update_file (struct file *file, unsigned int depth) { enum update_status new = update_file (d->file, depth + 1); if (new > status) - new = status; + status = new; } }