mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Add an option --asume-packages-installed
to not try to install packages.
This is different than `--dont-install-packages` that will try to compile the dependencies. `--asumme-packages-installed` will no try to install packages, but will not try either to compile dependencies.
This commit is contained in:
@ -38,6 +38,8 @@ def parse_args():
|
||||
help="Clean all intermediate files after the (successfull) build")
|
||||
subgroup.add_argument('--dont-install-packages', action='store_true',
|
||||
help="Do not try to install packages before compiling")
|
||||
subgroup.add_argument('--assume-packages-installed', action='store_true',
|
||||
help="Assume the package to install to be aleady installed")
|
||||
subgroup.add_argument('--android-arch', action='append',
|
||||
help=("Specify the architecture to build for android application/libraries.\n"
|
||||
"Can be specified several times to build for several architectures.\n"
|
||||
|
Reference in New Issue
Block a user