[oe-commits] [openembedded-core] 09/60: weston-init: Fix weston-start to handle 0 or 1 args

git at git.openembedded.org git at git.openembedded.org
Mon Jul 25 08:58:36 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 615aa9676b70f6e0e4f462b0fe3bd4ba87803b5b
Author: Tom Hochstein <tom.hochstein at nxp.com>
AuthorDate: Mon Jul 18 09:43:05 2016 -0500

    weston-init: Fix weston-start to handle 0 or 1 args
    
    The parser incorrectly treated anything less than 2 args as an error.
    
    Signed-off-by: Tom Hochstein <tom.hochstein at nxp.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-graphics/wayland/weston-init/weston-start | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta/recipes-graphics/wayland/weston-init/weston-start b/meta/recipes-graphics/wayland/weston-init/weston-start
index 3508ae2..9ef6773 100755
--- a/meta/recipes-graphics/wayland/weston-init/weston-start
+++ b/meta/recipes-graphics/wayland/weston-init/weston-start
@@ -5,7 +5,7 @@ export PATH="/sbin:/usr/sbin:/bin:/usr/bin"
 
 usage() {
     cat <<EOF
-    $0 <openvt arguments> -- <weston options>
+    $0 [<openvt arguments>] [-- <weston options>]
 EOF
 }
 
@@ -22,11 +22,6 @@ add_openvt_argument() {
 	openvt_args="$openvt_args $1"
 }
 
-if test $# -lt 2; then
-	usage
-	exit 1
-fi
-
 if [ -n "$WAYLAND_DISPLAY" ]; then
 	echo "ERROR: A Wayland compositor is already running, nested Weston instance is not supported yet."
 	exit 1

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list