This commit is contained in:
Mike Hommey 2012-05-14 17:55:43 +02:00
Родитель 88670fcd3e
Коммит 729aa0cd5f
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -505,8 +505,9 @@ if __name__ == '__main__':
print >>sys.stderr, "--regen useless without --cachedir"
# Delete the lex/yacc files. Ply is too stupid to regenerate them
# properly
for filename in [os.path.join(options.cachedir, f) for f in ["xpidllex.py", "xpidlyacc.py"]]:
os.remove(filename)
for fileglobs in [os.path.join(options.cachedir, f) for f in ["xpidllex.py*", "xpidlyacc.py*"]]:
for filename in glob.glob(fileglobs):
os.remove(filename)
# Instantiate the parser.
p = xpidl.IDLParser(outputdir=options.cachedir)