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:
parent
fafeb32c9d
commit
2e35d8c187
@ -203,7 +203,8 @@ void dump_pkg_files(pmpkg_t *pkg)
|
|||||||
pkgfiles = alpm_pkg_get_files(pkg);
|
pkgfiles = alpm_pkg_get_files(pkg);
|
||||||
|
|
||||||
for(i = pkgfiles; i; i = alpm_list_next(i)) {
|
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);
|
fflush(stdout);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user