mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-15 02:22:24 +08:00
18 lines
533 B
Diff
18 lines
533 B
Diff
|
diff --git a/libfakeroot.c b/libfakeroot.c
|
||
|
index f867758..7ef6e47 100644
|
||
|
--- a/libfakeroot.c
|
||
|
+++ b/libfakeroot.c
|
||
|
@@ -256,10 +256,12 @@ 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);
|
||
|
+#ifdef LIBFAKEROOT_DEBUGGING
|
||
|
if ( (msg = dlerror()) != NULL){
|
||
|
fprintf (stderr, "dlsym(%s): %s\n", next_wrap[i].name, msg);
|
||
|
/* abort ();*/
|
||
|
}
|
||
|
+#endif /* LIBFAKEROOT_DEBUGGING */
|
||
|
}
|
||
|
}
|
||
|
|