Skip to content

Commit 2cdefc1

Browse files
committed
Fix share handling in repo2solv
We only search the uninternalized data for the repodata we're extending, so we need to internalize the data before adding new repodata areas.
1 parent d337e31 commit 2cdefc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/repo2solv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ read_susetags_repo(Repo *repo, const char *dir)
404404
filename = susetags_find(files, nfiles, "packages");
405405
if (filename && (fp = susetags_open(ddir, filename, &tmp, 1)) != 0)
406406
{
407-
if (repo_add_susetags(repo, fp, defvendor, 0, REPO_NO_INTERNALIZE|SUSETAGS_RECORD_SHARES))
407+
if (repo_add_susetags(repo, fp, defvendor, 0, SUSETAGS_RECORD_SHARES))
408408
{
409409
fprintf(stderr, "%s: %s\n", tmp, pool_errstr(pool));
410410
exit(1);

0 commit comments

Comments
 (0)