aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2003-06-24 03:12:14 +0000
committerRonald G. Minnich <rminnich@gmail.com>2003-06-24 03:12:14 +0000
commit39b8077ad553878d22d6f865e810b912dbedac5c (patch)
tree6317e9ced3c2cf34e0291d8e56cddcc515459dff /util
parent7edf2ca6ff27671477915f79646f19d47596eb8b (diff)
Simply typo in 'target' if directory does not exist
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@894 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r--util/newconfig/config.g2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g
index 09e60eb823..e37ef8e015 100644
--- a/util/newconfig/config.g
+++ b/util/newconfig/config.g
@@ -577,7 +577,7 @@ def target(targ_name):
print "Configuring TARGET %s" % targ_name
target_dir = os.path.join(os.path.dirname(loc.file()), targ_name)
if not os.path.isdir(target_dir):
- print "Creating directory" % target_dir
+ print "Creating directory %s" % target_dir
os.makedirs(target_dir)
print "Will place Makefile, crt0.S, etc. in %s" % target_dir
root = partobj(target_dir, 0, 'board')