Skip to content

Commit 2e1feff

Browse files
authored
Merge pull request #654 from MarnixCroes/master
regenerate artifacts
2 parents eaab428 + 0382486 commit 2e1feff

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
@@ -240,7 +240,7 @@ display_help()
240240
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
241241
display_message " --disable-shared Disables shared library builds."
242242
display_message " --disable-static Disables static library builds."
243-
display_message " --help Display usage, overriding script execution."
243+
display_message " --help, -h Display usage, overriding script execution."
244244
display_message ""
245245
display_message "All unrecognized options provided shall be passed as configuration options for "
246246
display_message "all dependencies."
@@ -253,7 +253,7 @@ parse_command_line_options()
253253
for OPTION in "$@"; do
254254
case $OPTION in
255255
# Standard script options.
256-
(--help) DISPLAY_HELP="yes";;
256+
(--help|-h) DISPLAY_HELP="yes";;
257257
(--verbose) DISPLAY_VERBOSE="yes";;
258258

259259
# 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
@@ -247,7 +247,7 @@ display_help()
247247
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
248248
display_message " --disable-shared Disables shared library builds."
249249
display_message " --disable-static Disables static library builds."
250-
display_message " --help Display usage, overriding script execution."
250+
display_message " --help, -h Display usage, overriding script execution."
251251
display_message ""
252252
display_message "All unrecognized options provided shall be passed as configuration options for "
253253
display_message "all dependencies."
@@ -260,7 +260,7 @@ parse_command_line_options()
260260
for OPTION in "$@"; do
261261
case $OPTION in
262262
# Standard script options.
263-
(--help) DISPLAY_HELP="yes";;
263+
(--help|-h) DISPLAY_HELP="yes";;
264264
(--verbose) DISPLAY_VERBOSE="yes";;
265265

266266
# 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
@@ -240,7 +240,7 @@ display_help()
240240
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
241241
display_message " --disable-shared Disables shared library builds."
242242
display_message " --disable-static Disables static library builds."
243-
display_message " --help Display usage, overriding script execution."
243+
display_message " --help, -h Display usage, overriding script execution."
244244
display_message ""
245245
display_message "All unrecognized options provided shall be passed as configuration options for "
246246
display_message "all dependencies."
@@ -253,7 +253,7 @@ parse_command_line_options()
253253
for OPTION in "$@"; do
254254
case $OPTION in
255255
# Standard script options.
256-
(--help) DISPLAY_HELP="yes";;
256+
(--help|-h) DISPLAY_HELP="yes";;
257257
(--verbose) DISPLAY_VERBOSE="yes";;
258258

259259
# Standard build options.

0 commit comments

Comments
 (0)