diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/unix/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2013-12-12 Kaz Kojima <kkojima@rr.iij4u.or.jp> + + * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver. + 2013-12-12 Siddhesh Poyarekar <siddhesh@redhat.com> * benchtests/Makefile (bench): Add exp2 and log2. diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index 2b607a007a..e6adb9dffa 100644 --- a/sysdeps/unix/Makefile +++ b/sysdeps/unix/Makefile @@ -52,13 +52,13 @@ $(objpfx)stub-syscalls.c: $(common-objpfx)sysd-syscalls \ case $$call in \ *@@*) \ ver=$${call##*@}; call=$${call%%@*}; \ - ver=`echo "$ver" | sed 's/\./_/g'`; \ + ver=`echo "$$ver" | sed 's/\./_/g'`; \ echo "strong_alias (_no_syscall, __$${call}_$${ver})"; \ echo "versioned_symbol (libc, __$${call}_$${ver}, $$call, $$ver);"\ ;; \ *@*) \ ver=$${call##*@}; call=$${call%%@*}; \ - ver=`echo "$ver" | sed 's/\./_/g'`; \ + ver=`echo "$$ver" | sed 's/\./_/g'`; \ echo "strong_alias (_no_syscall, __$${call}_$${ver})"; \ echo "compat_symbol (libc, __$${call}_$${ver}, $$call, $$ver);" \ ;; \ |