From ddfab6dc651e23c5c484678145299303fcd9e93a Mon Sep 17 00:00:00 2001 From: Kaz Kojima Date: Fri, 13 Dec 2013 08:45:01 +0900 Subject: Use $$ver instead of $ver. --- sysdeps/unix/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix') diff --git a/sysdeps/unix/Makefile b/sysdeps/unix/Makefile index 2b607a0..e6adb9d 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);" \ ;; \ -- cgit v1.1