cli: remove --version to --modversion remapping

This has been a source of frequent complaints, so we drop it.
Resolves: https://todo.sr.ht/~kaniini/pkgconf/6
pull/199/head
Ariadne Conill 2020-01-21 10:32:36 -06:00
parent 48dc665ae3
commit 62bbd3b664
1 changed files with 2 additions and 12 deletions

View File

@ -1005,18 +1005,8 @@ main(int argc, char *argv[])
if ((want_flags & PKG_VERSION) == PKG_VERSION)
{
if (argc > 2)
{
fprintf(stderr, "%s: --version specified with other options or module names, assuming --modversion.\n", argv[0]);
want_flags &= ~PKG_VERSION;
want_flags |= PKG_MODVERSION;
}
else
{
version();
return EXIT_SUCCESS;
}
version();
return EXIT_SUCCESS;
}
if ((want_flags & PKG_HELP) == PKG_HELP)