summaryrefslogtreecommitdiffstats
path: root/libc/tools
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-18 16:42:36 -0800
committerElliott Hughes <enh@google.com>2014-02-18 16:42:36 -0800
commit986f9067103e41296898a7c0e89f5ed84420fb5b (patch)
tree2c8aff9ef2cd15f628ad735a801a76256d9c0279 /libc/tools
parent787c1f937a915feefb767d0c6a15ddb70e6de933 (diff)
downloadbionic-986f9067103e41296898a7c0e89f5ed84420fb5b.zip
bionic-986f9067103e41296898a7c0e89f5ed84420fb5b.tar.gz
bionic-986f9067103e41296898a7c0e89f5ed84420fb5b.tar.bz2
Fix build by avoiding the _C_LABEL macro.
Change-Id: Ide367c2b65071388bd95fbc81a4ed6ae94aec4e4
Diffstat (limited to 'libc/tools')
-rwxr-xr-xlibc/tools/gensyscalls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/tools/gensyscalls.py b/libc/tools/gensyscalls.py
index 30590cd..6388ee1 100755
--- a/libc/tools/gensyscalls.py
+++ b/libc/tools/gensyscalls.py
@@ -48,8 +48,8 @@ ENTRY(%(func)s)
function_alias = """
- .globl _C_LABEL(%(alias)s)
- .equ _C_LABEL(%(alias)s), _C_LABEL(%(func)s)
+ .globl %(alias)s
+ .equ %(alias)s, %(func)s
"""