From d7b4fb26e2e4207e14f4af2d6eeba6dc3513cc53 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 12 Jun 2012 10:27:01 +0200 Subject: [PATCH] Fix a typo in sysdeps/unix/Makefile. --- ChangeLog | 5 +++++ sysdeps/unix/Makefile | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index d17cf3e..e352549 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-06-12 Thomas Schwinge + + * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for + non-default versions. + 2012-06-11 Roland McGrath [BZ #14218] diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index c8ef96d..9e95b56 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -51,9 +51,9 @@ $(objpfx)stub-syscalls.c: $(common-objpfx)sysd-syscalls \ echo "strong_alias (_no_syscall, $${call}_$${ver})"; \ echo "default_symbol_version \ ($${call}_$${ver}, $$call, $$ver);" ;; \ - *@@*) ver=$${call##*@}; call=$${call%%*@}; \ - echo "strong_alias (_no_syscall, $${call}_$${ver})"; \ - echo "symbol_version ($${call}_$${ver}, $$call, $$ver);" ;; \ + *@*) ver=$${call##*@}; call=$${call%%*@}; \ + 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)" ;; \ -- 2.7.4