diff options
author | Zach van Rijn <me@zv.io> | 2022-01-08 15:35:13 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-05-01 17:05:41 -0500 |
commit | 67036d66488115901510a51c83147ad37dd871e9 (patch) | |
tree | 41add2d48aa3eec3e4c5f4435bceec8a2b8fc2d8 /system/fakeroot/fakeroot-hide-dlsym-errors.patch | |
parent | 473a51c44dc72c39a14eef332a68c6e50cf2fdc6 (diff) | |
download | packages-67036d66488115901510a51c83147ad37dd871e9.tar.gz packages-67036d66488115901510a51c83147ad37dd871e9.tar.bz2 packages-67036d66488115901510a51c83147ad37dd871e9.tar.xz packages-67036d66488115901510a51c83147ad37dd871e9.zip |
system/fakeroot: bump { 1.24 --> 1.25.3 } and pull Alpine patches. fixes test failure on ppc64.
Diffstat (limited to 'system/fakeroot/fakeroot-hide-dlsym-errors.patch')
-rw-r--r-- | system/fakeroot/fakeroot-hide-dlsym-errors.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/system/fakeroot/fakeroot-hide-dlsym-errors.patch b/system/fakeroot/fakeroot-hide-dlsym-errors.patch deleted file mode 100644 index aeeb347da..000000000 --- a/system/fakeroot/fakeroot-hide-dlsym-errors.patch +++ /dev/null @@ -1,20 +0,0 @@ -it's normal that the acl_* symbols are not found if the application -is not linked against -lacl. these errors harmless, but mighty -annoying. - ---- fakeroot-1.20/libfakeroot.c.orig 2014-03-07 11:20:26.120532847 +0200 -+++ fakeroot-1.20/libfakeroot.c 2014-03-07 11:21:26.486872482 +0200 -@@ -258,10 +258,12 @@ - /* clear dlerror() just in case dlsym() legitimately returns NULL */ - msg = dlerror(); - *(next_wrap[i].doit)=dlsym(get_libc(), next_wrap[i].name); -- if ( (msg = dlerror()) != NULL){ -+#ifdef LIBFAKEROOT_DEBUGGING -+ if ( fakeroot_debug && (msg = dlerror()) != NULL) { - fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg); - /* abort ();*/ - } -+#endif - } - } - |