Also copy the generated .py and .pi files into the sdist

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-02-28 19:17:23 +00:00
parent 4f56622135
commit 4d1c775c9f

View File

@@ -1340,6 +1340,10 @@ def sdist(options, args):
destdir = posixjoin(PDEST, 'sip', srcdir)
for name in glob.glob(posixjoin('sip', srcdir, '*')):
copyFile(name, destdir)
for wc in ['*.py', '*.pi']:
destdir = posixjoin(PDEST, 'wx')
for name in glob.glob(posixjoin('wx', wc)):
copyFile(name, destdir)
# build the tarball
msg('Archiving Phoenix source...')