]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: align build configuration dump properly
authorMarcin Juszkiewicz <hrw@openedhand.com>
Sun, 17 Feb 2008 10:29:11 +0000 (10:29 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Sun, 17 Feb 2008 10:29:11 +0000 (10:29 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3823 311d38ba-8fff-0310-9ca6-ca027cbcb966

meta/classes/base.bbclass

index e329449f34314c36888dd1486d79b0638bbf72f4..5067dfbea0a43b6cde4a2e534fb5947849269893 100644 (file)
@@ -660,7 +660,7 @@ python base_eventhandler() {
        if name.startswith("BuildStarted"):
                bb.data.setVar( 'BB_VERSION', bb.__version__, e.data )
                statusvars = ['BB_VERSION', 'METADATA_REVISION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'DISTRO_VERSION','TARGET_FPU']
-               statuslines = ["%-14s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars]
+               statuslines = ["%-17s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars]
                statusmsg = "\nOE Build Configuration:\n%s\n" % '\n'.join(statuslines)
                print statusmsg