Commit 0805b28f authored by Benjamin Peterson's avatar Benjamin Peterson

handle different rc format

parent fb234631
......@@ -119,7 +119,10 @@ docfile = ""
if micro:
docfile = str(micro)
if level < 0xf:
docfile = '%x%s' % (level, serial)
if level == 0xC:
docfile = "rc%s" % (serial,)
else:
docfile = '%x%s' % (level, serial)
docfile = 'python%s%s%s.chm' % (major, minor, docfile)
# Build the mingw import library, libpythonXY.a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment