about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--scripts/make_release.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/make_release.py b/scripts/make_release.py
index ffb8e67e..b1cc0fc0 100644
--- a/scripts/make_release.py
+++ b/scripts/make_release.py
@@ -13,7 +13,6 @@ platform = sys.argv[2]
 exe_ext = ""
 use_zip = 0
 use_gz = 1
-use_sdldll = 0
 use_dmg = 0
 use_bundle = 0
 include_data = True
@@ -36,7 +35,6 @@ if platform == 'win32':
 	exe_ext = ".exe"
 	use_zip = 1
 	use_gz = 0
-	use_sdldll = 1
 if  platform == 'osx':
 	use_dmg = 1
 	use_gz = 0
@@ -64,9 +62,6 @@ print "adding files"
 shutil.copy("readme.txt", package_dir)
 shutil.copy("license.txt", package_dir)
 
-if use_sdldll:
-	shutil.copy("other/sdl/vc2005libs/SDL.dll", package_dir)
-
 if include_data and not use_bundle:
 	os.mkdir(os.path.join(package_dir, "data"))
 	copydir("data", package_dir)