From: Saul Wold Date: Tue, 26 Jul 2011 20:31:45 +0000 (-0700) Subject: utils.bbclass: Don't forget to pass the cmdline options X-Git-Tag: 2011-1~571 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=190b4f17f5fc9879e680278dd0e31e26e5f5bca0;p=openembedded-core.git utils.bbclass: Don't forget to pass the cmdline options This ensure that the command line options from the creation of the wrapper are actaully passed into the wrapper. Signed-off-by: Saul Wold --- diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index 9930a24269..8c3a9b87e9 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass @@ -290,7 +290,7 @@ create_cmdline_wrapper () { cat <$cmd #!/bin/sh realpath=\`readlink -fn \$0\` -exec \`dirname \$realpath\`/$cmdname "\$@" +exec \`dirname \$realpath\`/$cmdname $@ "\$@" END chmod +x $cmd }