Skip to content

Commit bef4342

Browse files
authored
Merge pull request #293 from MarnixCroes/master
regenerate artifacts
2 parents dfce78a + 6b1c99f commit bef4342

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
@@ -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-cmakepresets.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# --disable-shared Disables shared library builds.
2727
# --disable-static Disables static library builds.
2828
# --verbose Display verbose output (defaults to quiet on called tooling).
29-
# --help Display usage, overriding script execution.
29+
# --help, -h Display usage, overriding script execution.
3030
#
3131
# Verified on Ubuntu 14.04, requires gcc-4.8 or newer.
3232
# Verified on OSX 10.10, using MacPorts and Homebrew repositories, requires
@@ -254,7 +254,7 @@ display_help()
254254
display_message " --prefix=<absolute-path> Library install location (defaults to /usr/local)."
255255
display_message " --disable-shared Disables shared library builds."
256256
display_message " --disable-static Disables static library builds."
257-
display_message " --help Display usage, overriding script execution."
257+
display_message " --help, -h Display usage, overriding script execution."
258258
display_message ""
259259
display_message "All unrecognized options provided shall be passed as configuration options for "
260260
display_message "all dependencies."
@@ -267,7 +267,7 @@ parse_command_line_options()
267267
for OPTION in "$@"; do
268268
case $OPTION in
269269
# Standard script options.
270-
(--help) DISPLAY_HELP="yes";;
270+
(--help|-h) DISPLAY_HELP="yes";;
271271
(--verbose) DISPLAY_VERBOSE="yes";;
272272

273273
# Standard build options.

install.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.

0 commit comments

Comments
 (0)