main: explicitly error with --modversion and more than 1 package being queried

pull/190/head
Ariadne Conill 2023-08-04 08:38:48 +00:00
parent 384ade5f31
commit a97b75ab2c
1 changed files with 9 additions and 0 deletions

View File

@ -1326,7 +1326,16 @@ cleanup3:
* the limit, stop adding packages to the queue.
*/
if (maximum_package_count > 0 && pkgq.length >= maximum_package_count)
{
if ((want_flags & PKG_MODVERSION) == PKG_MODVERSION)
{
fprintf(stderr, "pkgconf: --modversion requested with multiple packages, output would be ambiguous\n");
ret = EXIT_FAILURE;
goto out;
}
break;
}
while (isspace((unsigned char)package[0]))
package++;