From c55613345ee6735d6ad8fbf68bca5512f19d2b01 Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Tue, 24 Jun 2003 03:39:34 +0000 Subject: add a hint for users about why: Config.lb:0: Error: Option USE_FALLBACK_IMAGE Undefined. might happen (i.e. missing 'use' command) git-svn-id: svn://svn.coreboot.org/coreboot/trunk@897 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/newconfig/config.g | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util/newconfig') diff --git a/util/newconfig/config.g b/util/newconfig/config.g index e37ef8e015..c80391c39f 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -369,7 +369,7 @@ def getoption(name, part): else: o = getvalue(options, name) if (o == 0 or not o.defined): - fatal( "Error: Option %s Undefined." % name) + fatal( "Error: Option %s Undefined (Missing use command?)." % name) v = o.getvalue(part) if (debug > 2): print "getoption returns %s" % v @@ -447,7 +447,7 @@ def getformated(name, part): else: o = getvalue(options, name) if (o == 0 or not o.defined): - fatal( "Error: Option %s Undefined." % name) + fatal( "Error: Option %s Undefined (Missing use command?)." % name) v = o.getvalue(part) f = o.getformat() return (f % v) -- cgit v1.2.3