aboutsummaryrefslogtreecommitdiffstats
path: root/tools/fakeroot/patches/200-hide-dlsym-error.patch
diff options
context:
space:
mode:
authorSyrone Wong <wong.syrone@gmail.com>2021-01-01 21:50:43 +0800
committerPaul Spooren <mail@aparcar.org>2021-01-05 08:59:31 -1000
commitf34f4a6665a91571866de38f476554ed986eccf2 (patch)
tree82f2cfc3228aaa37b6da414b1ebde2db3e682df0 /tools/fakeroot/patches/200-hide-dlsym-error.patch
parentf4c64937cf3941f6c6ad6c882de02d1792f04812 (diff)
downloadupstream-f34f4a6665a91571866de38f476554ed986eccf2.tar.gz
upstream-f34f4a6665a91571866de38f476554ed986eccf2.tar.bz2
upstream-f34f4a6665a91571866de38f476554ed986eccf2.zip
tools/fakeroot: update to 1.25.3
use PKG_FIXUP:=autoreconf to generate configure 200-hide-dlsym-error.patch deleted due to fixed upstream in another way other patches refreshed to reflect latest changes Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
Diffstat (limited to 'tools/fakeroot/patches/200-hide-dlsym-error.patch')
-rw-r--r--tools/fakeroot/patches/200-hide-dlsym-error.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/fakeroot/patches/200-hide-dlsym-error.patch b/tools/fakeroot/patches/200-hide-dlsym-error.patch
deleted file mode 100644
index 3fd34c8778..0000000000
--- a/tools/fakeroot/patches/200-hide-dlsym-error.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Description: Hide error from dlsym()
- dlsym(), starting in glibc 2.24 actually reports errors. In our case,
- we try to get ACL functions which are not in the glibc. This causes
- failures in test suites, so hide those messages for non-debugging
- purposes for now. It also makes the build logs annoying to read.
-Author: Julian Andres Klode <juliank@ubuntu.com>
-Origin: vendor
-Bug-Debian: https://bugs.debian.org/830912
-Forwarded: no
-Last-Update: 2016-08-12
-
---- a/libfakeroot.c
-+++ b/libfakeroot.c
-@@ -256,10 +256,16 @@ void load_library_symbols(void){
- /* 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){
-- fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
--/* abort ();*/
-+#ifdef LIBFAKEROOT_DEBUGGING
-+ if (fakeroot_debug) {
-+ fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
-+/* abort ();*/
-+ }
-+#endif
- }
-+
- }
- }
-