[OE-core] [PATCH 01/11] scripts/create-recipe: fix handling of --help

Paul Eggleton paul.eggleton at linux.intel.com
Wed Nov 13 14:32:38 UTC 2013


If --help is specified as the first argument, show the standard help
text instead of trying to process it as a URL.

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
---
 scripts/create-recipe | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/create-recipe b/scripts/create-recipe
index 5613e92..b192990 100755
--- a/scripts/create-recipe
+++ b/scripts/create-recipe
@@ -1794,7 +1794,7 @@ sub calculate_sums
 # Main program 
 #
 
-if ( @ARGV < 1 ) {
+if ( @ARGV < 1 || $ARGV[0] eq "--help" ) {
     print "Usage: $0 [-r] <url-of-source-tarballs>\n";
     exit(1);
 }
-- 
1.8.1.2




More information about the Openembedded-core mailing list