From 924f1bc528b212aab91adf608ef32e41b67f3298 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Sun, 13 Sep 2009 00:20:01 +0300 Subject: [PATCH] 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. --- gobject/glib-mkenums.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in index 1e4062267..6dcb47475 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]);