diff options
| author | rillig <rillig@NetBSD.org> | 2023-05-09 21:24:56 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2023-05-09 21:24:56 +0000 |
| commit | 6165cc3feecbbcbd245fdf60821ce98dde070755 (patch) | |
| tree | 5a1e922dafca6abc28c739aee5b0ec09ae1ef5ba /usr.bin/make | |
| parent | e350d965ef3cb3282895b71cdaa03533d8169fdc (diff) | |
make: improve error message for failed stat in ':mtime'
Diffstat (limited to 'usr.bin/make')
| -rw-r--r-- | usr.bin/make/var.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usr.bin/make/var.c b/usr.bin/make/var.c index 62e0eed07af..420d4857f80 100644 --- a/usr.bin/make/var.c +++ b/usr.bin/make/var.c @@ -1,4 +1,4 @@ -/* $NetBSD: var.c,v 1.1052 2023/05/09 20:53:23 sjg Exp $ */ +/* $NetBSD: var.c,v 1.1053 2023/05/09 21:24:56 rillig Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1993 @@ -139,7 +139,7 @@ #include "metachar.h" /* "@(#)var.c 8.3 (Berkeley) 3/19/94" */ -MAKE_RCSID("$NetBSD: var.c,v 1.1052 2023/05/09 20:53:23 sjg Exp $"); +MAKE_RCSID("$NetBSD: var.c,v 1.1053 2023/05/09 21:24:56 rillig Exp $"); /* * Variables are defined using one of the VAR=value assignments. Their @@ -2862,8 +2862,12 @@ ApplyModifier_Mtime(const char **pp, ModChain *ch) if (!ModChain_ShouldEval(ch)) return AMR_OK; if (stat(Expr_Str(expr), &st) < 0) { - if (error) - return AMR_BAD; + if (error) { + Parse_Error(PARSE_FATAL, + "Cannot determine mtime for '%s': %s", + Expr_Str(expr), strerror(errno)); + return AMR_CLEANUP; + } if (i < 0) time(&st.st_mtime); else |
