From a2afa4b935e919333e2ee1dd0703c637cf7505be Mon Sep 17 00:00:00 2001 From: Cameron Zwarich Date: Wed, 7 May 2014 00:35:17 -0700 Subject: [PATCH] Make configure recognize the '-h' option in addition to '--help'. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index bf3c739c6ea..d1ebac3c770 100755 --- a/configure +++ b/configure @@ -318,7 +318,7 @@ fi OPTIONS="" HELP=0 -if [ "$1" = "--help" ] +if [ "$1" = "-h" ] || [ "$1" = "--help" ] then HELP=1 shift