From 9c991976e9dd9400e777c139da4f465d8d4a28f3 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 28 Apr 2011 03:51:53 +0000 Subject: [PATCH] Stricter error reporting --- src/makefile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/makefile.c b/src/makefile.c index 2e515a7..c9dc752 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -1338,6 +1338,8 @@ static int _target_source(Configure * configure, FILE * fp, fputc('\n', fp); break; case OT_UNKNOWN: + fprintf(stderr, "%s%s%s", PACKAGE ": ", target, + ": Unknown source type for object\n"); ret = 1; break; }