diff options
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/iceemakedist.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/iceemakedist.py b/cpp/iceemakedist.py index 8cb0e7ab5d6..786a2812c36 100755 --- a/cpp/iceemakedist.py +++ b/cpp/iceemakedist.py @@ -258,6 +258,9 @@ filesToRemove = [ \ os.path.join("ice", "all.dsw"), \ os.path.join("ice", "all.dsp"), \ os.path.join("ice", "allTests.py"), \ + os.path.join("ice", "src", "icecpp", "icecpp.dsp"), \ + os.path.join("ice", "src", "IceUtil", "iceutil.dsp"), \ + os.path.join("ice", "src", "Slice", "slice.dsp"), \ ] filesToRemove.extend(find("ice", ".dummy")) for x in filesToRemove: @@ -423,6 +426,6 @@ os.system("zip -9r" + quiet + " " + icever + ".zip " + icever) # Done. # print "Cleaning up..." -#shutil.rmtree(icever) +shutil.rmtree(icever) shutil.rmtree("icee") print "Done." |