Changeset 2729
- Timestamp:
- 08/05/09 07:58:16 (8 months ago)
- Files:
-
- trunk/main/package.py (modified) (3 diffs)
- trunk/main/win/openssl (added)
- trunk/main/win/openssl/libeay32.dll (added)
- trunk/main/win/openssl/ssleay32.dll (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/main/package.py
r2654 r2729 27 27 import re 28 28 import subprocess 29 import shutil 29 30 try: 30 31 import py2exe … … 328 329 329 330 #remove prototype and iphone interfaces 330 os.system("rm -rf interfaces/prototype>/dev/null") 331 os.system("rm -rf interfaces/iphone>/dev/null") 331 os.system("rm -rf interfaces/prototype>/dev/null") 332 os.system("rm -rf interfaces/iphone>/dev/null") 332 333 333 334 #build SABnzbd.py … … 421 422 422 423 DeleteFiles('*.ini') 424 425 # Copy the proper OpenSSL files into the dist folder 426 shutil.copy2('win/openssl/libeay32.dll', 'dist/lib') 427 shutil.copy2('win/openssl/ssleay32.dll', 'dist/lib') 428 423 429 os.system('makensis.exe /v3 /DSAB_PRODUCT=%s /DSAB_FILE=%s NSIS_Installer.nsi' % \ 424 430 (release, fileIns))