Fix #1066363 - directory name matches tarball name

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7250 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-06-02 21:56:35 +00:00
commit bd43f20540

View file

@ -1,19 +1,24 @@
#!/usr/local/bin/python
# This script builds a SWIG-1.3 distribution.
# Usage : mkdist.py directory, where directory should be SWIG-1.3.x
# This script builds a swig-1.3 distribution.
# Usage : mkdist.py directory, where directory should be swig-1.3.x
import sys
import string
import os
try:
dirname = sys.argv[1]
except:
print "Usage: mkdist.py directory, where directory should be SWIG-1.3.x"
print "Usage: mkdist.py directory, where directory should be swig-1.3.x"
sys.exit(0)
# Check name matches normal unix conventions
if string.lower(dirname) != dirname:
print "directory name ("+dirname+") should be in lowercase"
sys.exit(0)
# If directory exists, remove it
import os
print "Removing ", dirname
os.system("rm -rf "+dirname)
@ -46,6 +51,6 @@ print "Building documentation"
os.system("cd "+dirname+"/Doc/Manual; make; rm *.bak")
# Build the tar-ball
os.system("tar -cf "+string.lower(dirname)+".tar "+dirname)
os.system("gzip "+string.lower(dirname)+".tar")
os.system("tar -cf "+dirname+".tar "+dirname)
os.system("gzip "+dirname+".tar")