From: Roland McGrath Date: Thu, 27 Mar 2003 09:47:16 +0000 (+0000) Subject: 2003-03-27 Roland McGrath X-Git-Tag: cvs/glibc-2_3_3~1050 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=130ed2359f57a27949c65d90661ba72306e6c9b7;p=thirdparty%2Fglibc.git 2003-03-27 Roland McGrath * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Emit stub_warning macro calls and a #include at the end. * Makerules ($(objpfx)stubs): Tweak sed commands. --- diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index f3600136f37..12a46246d7a 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -306,8 +306,10 @@ $(objpfx)stub-syscalls.c: $(common-objpfx)sysd-syscalls \ echo "strong_alias (_no_syscall, $${call}_$${ver})"; \ echo "symbol_version ($${call}_$${ver}, $$call, $$ver);" ;; \ *) echo "weak_alias (_no_syscall, $$call)"; \ + echo "stub_warning ($$call)"; \ echo "weak_alias (_no_syscall, __GI_$$call)" ;; \ esac; \ + echo '#include '; \ done) > $@T mv -f $@T $@ generated += stub-syscalls.c