-/* $OpenBSD: main.c,v 1.129 2023/01/17 13:03:22 kn Exp $ */
+/* $OpenBSD: main.c,v 1.130 2023/05/30 04:42:21 espie Exp $ */
/* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */
/*
bool beSilent; /* -s flag */
bool dumpData; /* -p flag */
+static LIST unreadable;
+
struct dirs {
char *current;
char *object;
return 0;
}
+struct unreadable {
+ char *fname;
+ int errcode;
+};
+
+void
+dump_unreadable(void)
+{
+ struct unreadable *u;
+
+ if (Lst_IsEmpty(&unreadable))
+ return;
+
+ fprintf(stderr, "Makefile(s) that couldn't be read:\n");
+
+ while ((u = Lst_Pop(&unreadable))) {
+ fprintf(stderr, "\t%s: %s\n", u->fname, strerror(u->errcode));
+ free(u->fname);
+ free(u);
+ }
+}
+
+static FILE *
+open_makefile(const char *fname)
+{
+ FILE *stream;
+ struct unreadable *u;
+
+ stream = fopen(fname, "r");
+ if (stream != NULL)
+ return stream;
+
+ if (errno != ENOENT) {
+ u = emalloc(sizeof *u);
+ u->fname = estrdup(fname);
+ u->errcode = errno;
+ Lst_AtEnd(&unreadable, u);
+ }
+
+ return NULL;
+}
+
/*-
* ReadMakefile --
* Open and parse the given makefile.
Var_Set("MAKEFILE", "");
Parse_File(estrdup("(stdin)"), stdin);
} else {
- if ((stream = fopen(fname, "r")) != NULL)
+ if ((stream = open_makefile(fname)) != NULL)
goto found;
/* if we've chdir'd, rebuild the path name */
if (d->current != d->object && *fname != '/') {
char *path;
path = Str_concat(d->current, fname, '/');
- if ((stream = fopen(path, "r")) == NULL)
+ if ((stream = open_makefile(path)) == NULL)
free(path);
else {
fname = path;
name = Dir_FindFile(fname, userIncludePath);
if (!name)
name = Dir_FindFile(fname, systemIncludePath);
- if (!name || !(stream = fopen(name, "r")))
+ if (!name)
+ return false;
+ /* do not try to open a file we already have, so that
+ * dump_unreadable() yields non-confusing results.
+ */
+ if (strcmp(name, fname) == 0)
+ return false;
+ if ((stream = open_makefile(name)) == NULL)
return false;
fname = name;
/*
#ifndef MAIN_H
#define MAIN_H
-/* $OpenBSD: main.h,v 1.6 2020/01/13 14:51:50 espie Exp $ */
+/* $OpenBSD: main.h,v 1.7 2023/05/30 04:42:21 espie Exp $ */
/*
* Copyright (c) 2001 Marc Espie.
/* set_notparallel(): used to influence running mode from parse.c */
extern void set_notparallel(void);
+/* dump_unreadable: in case of some errors, dump makefile names
+ * we found but are unable to read.
+ */
+extern void dump_unreadable(void);
#endif
-/* $OpenBSD: parse.c,v 1.134 2021/03/06 08:31:42 espie Exp $ */
+/* $OpenBSD: parse.c,v 1.135 2023/05/30 04:42:21 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
Parse_MainName(Lst listmain) /* result list */
{
if (mainNode == NULL) {
+ dump_unreadable();
Punt("no target to make.");
/*NOTREACHED*/
} else if (mainNode->type & OP_DOUBLEDEP) {