Fixed:
- Remove PR. We don't need the "PR = r0" in the bb file.
- Function length can't get the array's size correctly.
  Should use function scalar.

Signed-off-by: Yi Zhao <yi.z...@windriver.com>
---
 scripts/create-recipe |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/create-recipe b/scripts/create-recipe
index b192990..e4bc4c3 100755
--- a/scripts/create-recipe
+++ b/scripts/create-recipe
@@ -1747,7 +1747,6 @@ sub write_bbfile
            print BBFILE "\"\n";
        }
 
-       print BBFILE 'PR = "r0"' . "\n";
        if ($python == 1) {
            print BBFILE "PV = \"$pversion\"\n\n";
        }
@@ -1865,7 +1864,7 @@ foreach (@tgzfiles) {
 #
 
 my @sourcetars = <$orgdir/$outputdir/*\.tar\.bz2 $orgdir/$outputdir/*\.tar\.gz 
$orgdir/$outputdir/*\.zip>;
-if ( length @sourcetars == 0) {
+if (scalar(@sourcetars) == 0) {
        print "Can NOT find source tarball. Exiting...\n";
        exit (1);
 }
-- 
1.7.9.5

-- 
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core

Reply via email to