1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
AC_DEFUN([OVERRIDE_HELP],
[dnl# Clear the default help message.
m4_cleardivert([HELP_BEGIN])dnl
m4_cleardivert([HELP_ENABLE])dnl
m4_cleardivert([HELP_WITH])dnl
m4_cleardivert([HELP_VAR])dnl
m4_cleardivert([HELP_VAR_END])dnl
m4_cleardivert([HELP_END])dnl
m4_divert_push([HELP_BEGIN])dnl
if test -n "$ac_init_help"; then
cat <<_ACEOF
Configures builds and installs of the AWS CLI
Usage: ./configure [[OPTION]]... [[ENV_VAR=VALUE]]...
Help options:
-h, --help Display help
-V, --version Display version
Installation directories:
--prefix=PREFIX Set installation prefix. By default, this value is
"$ac_default_prefix".
--libdir=LIBDIR Set parent directory for AWS CLI installation. The
full path to the AWS CLI installation is "LIBDIR/aws-cli".
The default value for "LIBDIR" is "PREFIX/lib"
(i.e., "$ac_default_prefix/lib" if "--prefix" is not set).
--bindir=BINDIR Set install directory for AWS CLI executables. The
default value for "BINDIR" is "PREFIX/bin"
(i.e., "$ac_default_prefix/bin" if "--prefix" is not set).
Optional arguments:
--with-install-type=[system-sandbox|portable-exe]
Specify type of AWS CLI installation. Options are:
"portable-exe", "system-sandbox" (default is
"system-sandbox")
--with-download-deps Download all dependencies and use those when
building the AWS CLI. Note that this is best effort
and has no backwards compatibility guarantee. If not
specified, the dependencies (including all python
packages) must be installed on your system
Some influential environment variables:
PYTHON the Python interpreter
m4_divert_pop([HELP_BEGIN])dnl
m4_divert_push([HELP_END])dnl
_ACEOF
exit 0
fi
m4_divert_pop([HELP_END])dnl
])
|