From 73f5513fb3a7327532a9bbc73e97560a5da1bd5f Mon Sep 17 00:00:00 2001 From: Tong Sun Date: Fri, 17 Oct 2008 16:08:50 -0400 Subject: [PATCH 1/1] Handle the unrecognized options for getopt stop on unrecognized options instead of ignoring them --- grml-debootstrap.clp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/grml-debootstrap.clp b/grml-debootstrap.clp index f3b4a78..40063cb 100644 --- a/grml-debootstrap.clp +++ b/grml-debootstrap.clp @@ -7,7 +7,7 @@ # grml # # @Author: Tong SUN -# @Release: $Revision: 1.1 $, under the BSD license +# @Release: $Revision: 1.2 $, under the BSD license # @HomeURL: http://xpt.sourceforge.net/ # @@ -19,10 +19,13 @@ -eval set -- `getopt \ - -o +m:i:r:t:p:c:hv --long \ +_opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:hv --long \ mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,config:,packages::,debconf::,keep_src_list,hostname:,password:,bootappend:,groot:,grub:,help,version \ -- "$@"` +if [ $? != 0 ]; then + eerror "Try `grml-debootstrap --help' for more information."; eend 1; exit 1 +fi +eval set -- "$_opt_temp" while :; do case "$1" in -- 2.1.4