diff options
-rw-r--r-- | bitbake-dev/lib/bb/cache.py | 20 | ||||
-rw-r--r-- | bitbake/lib/bb/cache.py | 20 |
2 files changed, 18 insertions, 22 deletions
diff --git a/bitbake-dev/lib/bb/cache.py b/bitbake-dev/lib/bb/cache.py index a4a4f47cef..a6b81333d1 100644 --- a/bitbake-dev/lib/bb/cache.py +++ b/bitbake-dev/lib/bb/cache.py | |||
@@ -59,18 +59,16 @@ class Cache: | |||
59 | if self.cachedir in [None, '']: | 59 | if self.cachedir in [None, '']: |
60 | self.has_cache = False | 60 | self.has_cache = False |
61 | bb.msg.note(1, bb.msg.domain.Cache, "Not using a cache. Set CACHE = <directory> to enable.") | 61 | bb.msg.note(1, bb.msg.domain.Cache, "Not using a cache. Set CACHE = <directory> to enable.") |
62 | else: | 62 | return |
63 | self.has_cache = True | ||
64 | self.cachefile = os.path.join(self.cachedir,"bb_cache.dat") | ||
65 | |||
66 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) | ||
67 | try: | ||
68 | os.stat( self.cachedir ) | ||
69 | except OSError: | ||
70 | bb.mkdirhier( self.cachedir ) | ||
71 | 63 | ||
72 | if not self.has_cache: | 64 | self.has_cache = True |
73 | return | 65 | self.cachefile = os.path.join(self.cachedir,"bb_cache.dat") |
66 | |||
67 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) | ||
68 | try: | ||
69 | os.stat( self.cachedir ) | ||
70 | except OSError: | ||
71 | bb.mkdirhier( self.cachedir ) | ||
74 | 72 | ||
75 | # If any of configuration.data's dependencies are newer than the | 73 | # If any of configuration.data's dependencies are newer than the |
76 | # cache there isn't even any point in loading it... | 74 | # cache there isn't even any point in loading it... |
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py index a4a4f47cef..a6b81333d1 100644 --- a/bitbake/lib/bb/cache.py +++ b/bitbake/lib/bb/cache.py | |||
@@ -59,18 +59,16 @@ class Cache: | |||
59 | if self.cachedir in [None, '']: | 59 | if self.cachedir in [None, '']: |
60 | self.has_cache = False | 60 | self.has_cache = False |
61 | bb.msg.note(1, bb.msg.domain.Cache, "Not using a cache. Set CACHE = <directory> to enable.") | 61 | bb.msg.note(1, bb.msg.domain.Cache, "Not using a cache. Set CACHE = <directory> to enable.") |
62 | else: | 62 | return |
63 | self.has_cache = True | ||
64 | self.cachefile = os.path.join(self.cachedir,"bb_cache.dat") | ||
65 | |||
66 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) | ||
67 | try: | ||
68 | os.stat( self.cachedir ) | ||
69 | except OSError: | ||
70 | bb.mkdirhier( self.cachedir ) | ||
71 | 63 | ||
72 | if not self.has_cache: | 64 | self.has_cache = True |
73 | return | 65 | self.cachefile = os.path.join(self.cachedir,"bb_cache.dat") |
66 | |||
67 | bb.msg.debug(1, bb.msg.domain.Cache, "Using cache in '%s'" % self.cachedir) | ||
68 | try: | ||
69 | os.stat( self.cachedir ) | ||
70 | except OSError: | ||
71 | bb.mkdirhier( self.cachedir ) | ||
74 | 72 | ||
75 | # If any of configuration.data's dependencies are newer than the | 73 | # If any of configuration.data's dependencies are newer than the |
76 | # cache there isn't even any point in loading it... | 74 | # cache there isn't even any point in loading it... |