From: Michael Weghorn Date: Wed, 5 Dec 2018 14:23:41 +0000 (+0100) Subject: Update help for '--with-docs' X-Git-Tag: v5~21^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F303%2Fhead;p=thirdparty%2Fmkosi.git Update help for '--with-docs' The restriction "only Fedora, CentOS and Mageia" does not (no longer?) apply, since the option is also handled for other distributions (Debian, Ubuntu, openSUSE). --- diff --git a/mkosi b/mkosi index da5bc8007..9e13c3a3f 100755 --- a/mkosi +++ b/mkosi @@ -2694,7 +2694,7 @@ def parse_args() -> CommandLineArguments: group = parser.add_argument_group("Packages") group.add_argument('-p', "--package", action=CommaDelimitedListAction, dest='packages', default=[], help='Add an additional package to the OS image', metavar='PACKAGE') - group.add_argument("--with-docs", action='store_true', help='Install documentation (only Fedora, CentOS and Mageia)', default=None) + group.add_argument("--with-docs", action='store_true', help='Install documentation', default=None) group.add_argument('-T', "--without-tests", action='store_false', dest='with_tests', default=True, help='Do not run tests as part of build script, if supported') group.add_argument("--cache", dest='cache_path', help='Package cache path', metavar='PATH') group.add_argument("--extra-tree", action='append', dest='extra_trees', default=[], help='Copy an extra tree on top of image', metavar='PATH')