package_ipk: fix a missing paren which caused failures attempting to tokenize the...
authorChris Larson <chris_larson@mentor.com>
Sat, 1 May 2010 03:03:02 +0000 (20:03 -0700)
committerGrazvydas Ignotas <notasas@gmail.com>
Mon, 6 Jul 2015 18:55:18 +0000 (21:55 +0300)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
classes/package_ipk.bbclass

index 6971983..c7e7eef 100644 (file)
@@ -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