xbps_configure_pkg: simplify and remove "version" arg (API change).
The "version" argument (being optional) clearly is not needed and it can be fully removed. This simplifies the internal implementation as well as the API.
This commit is contained in:
@ -373,7 +373,7 @@ main(int argc, char **argv)
|
||||
if (strcasecmp(argv[1], "all") == 0)
|
||||
rv = xbps_configure_packages(true);
|
||||
else
|
||||
rv = xbps_configure_pkg(argv[1], NULL, true, false, true);
|
||||
rv = xbps_configure_pkg(argv[1], true, false, true);
|
||||
|
||||
} else if (strcasecmp(argv[0], "show-deps") == 0) {
|
||||
/*
|
||||
|
Reference in New Issue
Block a user