Skip to content

Commit 78e47ae

Browse files
authored
Merge pull request #1704 from MarnixCroes/master
regenerate artifacts
2 parents 5196bc6 + 0a6c25c commit 78e47ae

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

install-cmake.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# --disable-shared Disables shared library builds.
2525
# --disable-static Disables static library builds.
2626
# --verbose Display verbose output (defaults to quiet on called tooling).
27-
# --help Display usage, overriding script execution.
27+
# --help, -h Display usage, overriding script execution.
2828
#
2929
# Verified on Ubuntu 14.04, requires gcc-4.8 or newer.
3030
# Verified on OSX 10.10, using MacPorts and Homebrew repositories, requires
@@ -239,7 +239,7 @@ display_help()
239239
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
240240
display_message " --disable-shared Disables shared library builds."
241241
display_message " --disable-static Disables static library builds."
242-
display_message " --help Display usage, overriding script execution."
242+
display_message " --help, -h Display usage, overriding script execution."
243243
display_message ""
244244
display_message "All unrecognized options provided shall be passed as configuration options for "
245245
display_message "all dependencies."
@@ -252,7 +252,7 @@ parse_command_line_options()
252252
for OPTION in "$@"; do
253253
case $OPTION in
254254
# Standard script options.
255-
(--help) DISPLAY_HELP="yes";;
255+
(--help|-h) DISPLAY_HELP="yes";;
256256
(--verbose) DISPLAY_VERBOSE="yes";;
257257

258258
# Standard build options.

install-cmakepresets.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# --disable-shared Disables shared library builds.
2626
# --disable-static Disables static library builds.
2727
# --verbose Display verbose output (defaults to quiet on called tooling).
28-
# --help Display usage, overriding script execution.
28+
# --help, -h Display usage, overriding script execution.
2929
#
3030
# Verified on Ubuntu 14.04, requires gcc-4.8 or newer.
3131
# Verified on OSX 10.10, using MacPorts and Homebrew repositories, requires
@@ -246,7 +246,7 @@ display_help()
246246
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
247247
display_message " --disable-shared Disables shared library builds."
248248
display_message " --disable-static Disables static library builds."
249-
display_message " --help Display usage, overriding script execution."
249+
display_message " --help, -h Display usage, overriding script execution."
250250
display_message ""
251251
display_message "All unrecognized options provided shall be passed as configuration options for "
252252
display_message "all dependencies."
@@ -259,7 +259,7 @@ parse_command_line_options()
259259
for OPTION in "$@"; do
260260
case $OPTION in
261261
# Standard script options.
262-
(--help) DISPLAY_HELP="yes";;
262+
(--help|-h) DISPLAY_HELP="yes";;
263263
(--verbose) DISPLAY_VERBOSE="yes";;
264264

265265
# Standard build options.

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# --disable-shared Disables shared library builds.
2525
# --disable-static Disables static library builds.
2626
# --verbose Display verbose output (defaults to quiet on called tooling).
27-
# --help Display usage, overriding script execution.
27+
# --help, -h Display usage, overriding script execution.
2828
#
2929
# Verified on Ubuntu 14.04, requires gcc-4.8 or newer.
3030
# Verified on OSX 10.10, using MacPorts and Homebrew repositories, requires
@@ -239,7 +239,7 @@ display_help()
239239
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
240240
display_message " --disable-shared Disables shared library builds."
241241
display_message " --disable-static Disables static library builds."
242-
display_message " --help Display usage, overriding script execution."
242+
display_message " --help, -h Display usage, overriding script execution."
243243
display_message ""
244244
display_message "All unrecognized options provided shall be passed as configuration options for "
245245
display_message "all dependencies."
@@ -252,7 +252,7 @@ parse_command_line_options()
252252
for OPTION in "$@"; do
253253
case $OPTION in
254254
# Standard script options.
255-
(--help) DISPLAY_HELP="yes";;
255+
(--help|-h) DISPLAY_HELP="yes";;
256256
(--verbose) DISPLAY_VERBOSE="yes";;
257257

258258
# Standard build options.

0 commit comments

Comments
 (0)