autogen.sh | 2 ++ 1 file changed, 2 insertions(+) New commits: commit 86fc557c70e69d6c0a2d6a89b7a7f2cd261a1f40 Author: Mike Kaganski <mike.kagan...@collabora.com> AuthorDate: Sat Jul 13 23:42:37 2024 +0500 Commit: Mike Kaganski <mike.kagan...@collabora.com> CommitDate: Sat Jul 13 22:18:14 2024 +0200
Add a note about autogen.input into autogen.sh --help output Change-Id: Ie983645114817d3cadca8b5f243f4a47db054e0b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170435 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> diff --git a/autogen.sh b/autogen.sh index b961dd1934b3..21c21c743a84 100755 --- a/autogen.sh +++ b/autogen.sh @@ -201,6 +201,8 @@ die "Failed to generate the configure script" if (! -f "configure"); for my $arg (@ARGV) { if ($arg =~ /^(--help|-h|-\?)$/) { print STDOUT "autogen.sh - libreoffice configuration helper "; + print STDOUT "When called without arguments, arguments from autogen.input are used. "; + print STDOUT " Arguments processed in the helper: "; print STDOUT " --with-distro use a config from distro-configs/ "; print STDOUT " the name needs to be passed without extension "; print STDOUT " --best-effort don't fail on un-known configure with/enable options ";