diff options
author | Lincoln Ramsay <lincoln.ramsay@nokia.com> | 2009-04-17 05:07:45 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-04-17 13:23:53 (GMT) |
commit | c2c3f009f32d9cff675ec87001939344bf48a84c (patch) | |
tree | 65ddc1fbc1e2ce091739323895b4299b85b42023 | |
parent | c326a1db6bcfa2cd26f1225e7ca0e62396c26dd8 (diff) | |
download | Qt-c2c3f009f32d9cff675ec87001939344bf48a84c.zip Qt-c2c3f009f32d9cff675ec87001939344bf48a84c.tar.gz Qt-c2c3f009f32d9cff675ec87001939344bf48a84c.tar.bz2 |
Allow -help to be used in a non-eval package.
The previous logic caused a license check when the eval
license file was missing.
Reviewed-by: Jason McDonald
Task-number: 251339
(cherry picked from commit 8eb08c8c294f00763961e86cc3370b0ef78c8976)
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,10 +205,10 @@ earlyArgParse() h|help|--help|-help) if [ "$VAL" = "yes" ]; then OPT_HELP="$VAL" - COMMERCIAL_USER="yes" #doesn't matter we will display the help + COMMERCIAL_USER="no" #doesn't matter we will display the help else UNKNOWN_OPT=yes - COMMERCIAL_USER="yes" #doesn't matter we will display the help + COMMERCIAL_USER="no" #doesn't matter we will display the help fi ;; --*) |