]> www.pilppa.org Git - familiar-h63xx-build.git/commitdiff
base.bbclass: don't try to extract monotone revision since we don't use montone
authorRene Wagner <rw@handhelds.org>
Thu, 29 Jun 2006 22:18:45 +0000 (00:18 +0200)
committerRene Wagner <rw@handhelds.org>
Thu, 29 Jun 2006 22:18:45 +0000 (00:18 +0200)
Signed-off-by: Rene Wagner <rw@handhelds.org>
org.handhelds.familiar/classes/base.bbclass

index faf28004c9720b1166ee7a735a0862a2e76401c5..66563f34d379452fecbf251266fcb0b6d4427532 100644 (file)
@@ -513,12 +513,12 @@ python base_eventhandler() {
                bb.data.setVar( 'BB_VERSION', bb.__version__, e.data )
                path_to_bbfiles = bb.data.getVar( 'BBFILES', e.data, 1 )
                path_to_packages = path_to_bbfiles[:path_to_bbfiles.index( "packages" )]
-               monotone_revision = "<unknown>"
-               try:
-                       monotone_revision = file( "%s/MT/revision" % path_to_packages ).read().strip()
-               except IOError:
-                       pass
-               bb.data.setVar( 'OE_REVISION', monotone_revision, e.data )
+               #monotone_revision = "<unknown>"
+               #try:
+               #       monotone_revision = file( "%s/MT/revision" % path_to_packages ).read().strip()
+               #except IOError:
+               #       pass
+               #bb.data.setVar( 'OE_REVISION', monotone_revision, e.data )
                statusvars = ['BB_VERSION', 'OE_REVISION', 'TARGET_ARCH', 'TARGET_OS', 'MACHINE', 'DISTRO', 'TARGET_FPU']
                statuslines = ["%-13s = \"%s\"" % (i, bb.data.getVar(i, e.data, 1) or '') for i in statusvars]
                statusmsg = "\nOE Build Configuration:\n%s\n" % '\n'.join(statuslines)