summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-recipe3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/create-recipe b/scripts/create-recipe
index b192990080..e4bc4c322b 100755
--- a/scripts/create-recipe
+++ b/scripts/create-recipe
@@ -1747,7 +1747,6 @@ sub write_bbfile
1747 print BBFILE "\"\n"; 1747 print BBFILE "\"\n";
1748 } 1748 }
1749 1749
1750 print BBFILE 'PR = "r0"' . "\n";
1751 if ($python == 1) { 1750 if ($python == 1) {
1752 print BBFILE "PV = \"$pversion\"\n\n"; 1751 print BBFILE "PV = \"$pversion\"\n\n";
1753 } 1752 }
@@ -1865,7 +1864,7 @@ foreach (@tgzfiles) {
1865# 1864#
1866 1865
1867my @sourcetars = <$orgdir/$outputdir/*\.tar\.bz2 $orgdir/$outputdir/*\.tar\.gz $orgdir/$outputdir/*\.zip>; 1866my @sourcetars = <$orgdir/$outputdir/*\.tar\.bz2 $orgdir/$outputdir/*\.tar\.gz $orgdir/$outputdir/*\.zip>;
1868if ( length @sourcetars == 0) { 1867if (scalar(@sourcetars) == 0) {
1869 print "Can NOT find source tarball. Exiting...\n"; 1868 print "Can NOT find source tarball. Exiting...\n";
1870 exit (1); 1869 exit (1);
1871} 1870}