added "-setup" suffix to installer output file name

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4445 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-12-17 13:54:34 +00:00
parent 47b2ca9bcb
commit 4ca94f6615
3 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@
!ifdef OUTFILE
OutFile "${OUTFILE}"
!else
OutFile ..\nsis-${VERSION}.exe
OutFile ..\nsis-${VERSION}-setup.exe
!endif
SetCompressor /SOLID lzma

View file

@ -236,7 +236,7 @@ if defenv.has_key('VER_MAJOR') and defenv.has_key('VER_MINOR') \
defenv['INSTVER'] += ' /DVER_REVISION=$VER_REVISION'
defenv['INSTVER'] += ' /DVER_BUILD=$VER_BUILD'
installer_target = defenv.Command('nsis-${VERSION}${DISTSUFFIX}.exe',
installer_target = defenv.Command('nsis-${VERSION}-setup${DISTSUFFIX}.exe',
'$INSTDISTDIR' + os.sep + 'Examples' + os.sep + 'makensis.nsi',
'$INSTDISTDIR' + os.sep + 'makensis$PROGSUFFIX ' +
'/DOUTFILE=$TARGET.abspath $INSTVER $SOURCE')

View file

@ -192,7 +192,7 @@ run(
)
run(
'..\\nsis-test.exe /S /D=%s\\insttest' % os.getcwd(),
'..\\nsis-test-setup.exe /S /D=%s\\insttest' % os.getcwd(),
None,
'installer failed'
)
@ -282,7 +282,7 @@ ftp = FTP('upload.sourceforge.net')
ftp.login()
upload(ftp, newverdir + '.tar.bz2')
upload(ftp, newverdir + '\\nsis-%s.exe' % VERSION)
upload(ftp, newverdir + '\\nsis-%s-setup.exe' % VERSION)
upload(ftp, newverdir + '\\nsis-%s.zip' % VERSION)
upload(ftp, 'nsis-%s-log.zip' % VERSION)
upload(ftp, 'nsis-%s-strlen_8192.zip' % VERSION)