aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-30 20:03:02 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-30 20:03:20 -0700
commit458ff8365e1ac2db7e18ab11d689f4bc794d6f73 (patch)
tree60ed8b0221567445d9fe0553d852a350bfe34ea1 /classes
parentb4eb0ccfc8f9eef5d8b5c6078570b1ef07e98db3 (diff)
downloadopenembedded-458ff8365e1ac2db7e18ab11d689f4bc794d6f73.tar.gz
package_ipk: fix a missing paren which caused failures attempting to tokenize the function
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/package_ipk.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/package_ipk.bbclass b/classes/package_ipk.bbclass
index 410fee30cc..031c658762 100644
--- a/classes/package_ipk.bbclass
+++ b/classes/package_ipk.bbclass
@@ -54,7 +54,7 @@ python package_ipk_install () {
if (not os.access(os.path.join(ipkdir,"Packages"), os.R_OK) or
- not os.access(os.path.join(tmpdir, "stamps", "IPK_PACKAGE_INDEX_CLEAN"),os.R_OK):
+ not os.access(os.path.join(tmpdir, "stamps", "IPK_PACKAGE_INDEX_CLEAN"),os.R_OK)):
ret = os.system('ipkg-make-index -p %s %s ' % (os.path.join(ipkdir, "Packages"), ipkdir))
if (ret != 0 ):
raise bb.build.FuncFailed