]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
Kill unused projectdir in bb package.
authorChris Larson <clarson@mvista.com>
Mon, 20 Jul 2009 04:57:09 +0000 (21:57 -0700)
committerChris Larson <chris_larson@mentor.com>
Fri, 19 Feb 2010 18:05:42 +0000 (11:05 -0700)
Signed-off-by: Chris Larson <clarson@mvista.com>
lib/bb/__init__.py

index 92749d56f28097e6e50c056f270b85d0189e482c..ae53b481cd0532aaa8710f1e8711c40648ce81fc 100644 (file)
@@ -68,24 +68,13 @@ __all__ = [
 
 import sys, os, types, re, string, bb
 
-#projectdir = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0])))
-projectdir = os.getcwd()
-
 if "BBDEBUG" in os.environ:
     level = int(os.environ["BBDEBUG"])
     if level:
         bb.msg.set_debug_level(level)
 
-#######################################################################
-#######################################################################
-#
-# SECTION: Debug
-#
-# PURPOSE: little functions to make yourself known
-#
-#######################################################################
-#######################################################################
 
+# Messaging convenience functions
 def plain(*args):
     bb.msg.plain(''.join(args))