1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-02-28 17:31:52 -05:00

-Ql needs the 'root' prepended to each file

This commit is contained in:
Aaron Griffin 2007-02-01 02:16:13 +00:00
parent fafeb32c9d
commit 2e35d8c187

View File

@ -203,7 +203,8 @@ void dump_pkg_files(pmpkg_t *pkg)
pkgfiles = alpm_pkg_get_files(pkg);
for(i = pkgfiles; i; i = alpm_list_next(i)) {
fprintf(stdout, "%s %s\n", (char *)pkgname, (char *)alpm_list_getdata(i));
fprintf(stdout, "%s %s%s\n", pkgname, alpm_option_get_root(),
(char *)alpm_list_getdata(i));
}
fflush(stdout);