diff options
author | Fabian Groffen <grobian@gentoo.org> | 2018-01-20 10:33:44 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2018-01-20 10:33:55 +0100 |
commit | 599592c4514b585e7a7400586a95c224ce32efee (patch) | |
tree | d6740c1810f227952f608229d06a56e8da3b8a07 /app-arch/xar/files | |
parent | www-client/vivaldi: Version 1.13.1008.44_p1. (diff) | |
download | gentoo-599592c4514b585e7a7400586a95c224ce32efee.tar.gz gentoo-599592c4514b585e7a7400586a95c224ce32efee.tar.bz2 gentoo-599592c4514b585e7a7400586a95c224ce32efee.zip |
app-arch/xar: convert sed to path, add virtual/acl dep, bug #645054
Closes: https://bugs.gentoo.org/645054
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-arch/xar/files')
-rw-r--r-- | app-arch/xar/files/xar-1.8-safe_dirname.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-arch/xar/files/xar-1.8-safe_dirname.patch b/app-arch/xar/files/xar-1.8-safe_dirname.patch new file mode 100644 index 000000000000..eb2f5f071bb2 --- /dev/null +++ b/app-arch/xar/files/xar-1.8-safe_dirname.patch @@ -0,0 +1,16 @@ +linuxattr: fix missing symbol safe_dirname + +This one was probably missed when they did a global rename to xar_ +prefixed variants. + +--- a/lib/linuxattr.c ++++ b/lib/linuxattr.c +@@ -223,7 +223,7 @@ + if( statfs(file, &sfs) != 0 ) { + char *tmp, *bname; + tmp = strdup(file); +- bname = safe_dirname(tmp); ++ bname = xar_safe_dirname(tmp); + statfs(bname, &sfs); + free(tmp); + free(bname); |