mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
reverted unnecessary changes
This commit is contained in:
parent
7bdead04e7
commit
67f4910e86
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue