Skip to content

Commit

Permalink
[release] Remove yajl file that's unused.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Chu committed Dec 7, 2019
1 parent 10fb65c commit ec480ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build/c_module_srcs.py
Expand Up @@ -4,6 +4,7 @@
c_module_srcs.py
"""

import os
import glob
import sys

Expand Down Expand Up @@ -72,6 +73,9 @@ def main(argv):
for g in globs:
paths.extend(glob.glob(g))
for path in paths:
# UNUSED file. It's an optional layer on top.
if os.path.basename(path) == 'yajl_tree.c':
continue
print('../' + path)

else:
Expand Down
4 changes: 2 additions & 2 deletions build/c_module_toc.py
Expand Up @@ -20,8 +20,8 @@ def main(argv):
globs = [
'Modules/*.c',
'Modules/_io/*.c',
'../py-yajl/*.c',
'../py-yajl/yajl/src/*.c',
# The main entry point
'../py-yajl/yajl.c',
]

paths = []
Expand Down

0 comments on commit ec480ca

Please sign in to comment.