Skip to content

Commit

Permalink
Fix a typo in sysdeps/unix/Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Schwinge committed Jun 12, 2012
1 parent eb55f5c commit d7b4fb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2012-06-12 Thomas Schwinge <thomas@codesourcery.com>

* sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
non-default versions.

2012-06-11 Roland McGrath <roland@hack.frob.com>

[BZ #14218]
Expand Down
6 changes: 3 additions & 3 deletions sysdeps/unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)" ;; \
Expand Down

0 comments on commit d7b4fb2

Please sign in to comment.