diff options
author | Elliott Hughes <enh@google.com> | 2013-10-16 02:51:34 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-10-16 02:51:35 +0000 |
commit | 26242bf266fc7ee72a972ff0e4b12c024df4993c (patch) | |
tree | 8b89ff33d2f5a9405f7bf43a4ec8e4fab44e6d6b /libc/tools/bionic_utils.py | |
parent | 608c65f6955213179db4140cc57c40a2a88d5846 (diff) | |
parent | c9da332cce903ebd4bec97da1d78d363fcf41f6d (diff) |
Merge "Remove support for the useless 'custom' option in SYSCALLS.TXT."
Diffstat (limited to 'libc/tools/bionic_utils.py')
-rw-r--r-- | libc/tools/bionic_utils.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/tools/bionic_utils.py b/libc/tools/bionic_utils.py index 0ca217826..f8d889732 100644 --- a/libc/tools/bionic_utils.py +++ b/libc/tools/bionic_utils.py @@ -122,9 +122,7 @@ class SysCallsTxtParser: # Parse the architecture list. arch_list = line[pos_rparen+1:].strip() - if arch_list == "custom": - pass - elif arch_list == "all": + if arch_list == "all": for arch in all_arches: t[arch] = True else: |