From: Mart Raudsepp Date: Sat, 12 Sep 2009 21:20:01 +0000 (+0300) Subject: Accept -? for glib-mkenums. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=924f1bc528b212aab91adf608ef32e41b67f3298;p=dana%2Fcg-glib.git Accept -? for glib-mkenums. Commit 789e260638d tried to add support for -?, but there is a typo and instead -h was added when already present instead of -? for one of the cases. It works without this corrections, because all unrecognized options trigger usage showing as well, but this is more correct. This was bug 556706 originally. --- diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in index 1e406226..6dcb4747 100755 --- a/gobject/glib-mkenums.in +++ b/gobject/glib-mkenums.in @@ -235,7 +235,7 @@ while ($_=$ARGV[0],/^-/) { elsif (/^--vprod$/) { $vprod = $vprod . shift } elsif (/^--vtail$/) { $vtail = $vtail . shift } elsif (/^--comments$/) { $comment_tmpl = shift } - elsif (/^--help$/ || /^-h$/ || /^-h$/) { usage; } + elsif (/^--help$/ || /^-h$/ || /^-\?$/) { usage; } elsif (/^--version$/ || /^-v$/) { version; } else { usage; } last if not defined($ARGV[0]);