mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-05-05 23:40:39 -07:00
Fix scripts for self-installing executable generation.
This commit is contained in:
parent
86ab306ebc
commit
f4d402e8ef
3 changed files with 6 additions and 5 deletions
|
|
@ -321,7 +321,7 @@ windows-nsi:
|
|||
IF EXIST $(TAR_DIR) $(RMDIR) $(TAR_DIR)
|
||||
$(MKDIR) $(TAR_DIR)
|
||||
$(MAKE) flatinstall prefix=$(TAR_DIR)
|
||||
util\ecl_nsi.bat %%CD%%\$(srcdir)\util\ecl.nsi $(TAR_DIR)
|
||||
util\ecl_nsi.bat %%CD%%\$(srcdir)\util\ecl.nsi $(TAR_DIR) $(ECL_VERSION)
|
||||
$(MKNSI) $(TAR_DIR)/ecl.nsi
|
||||
$(MV) $(TAR_DIR)\Setup.exe ecl-$(ECL_VERSION).exe
|
||||
$(RMDIR) $(TAR_DIR)
|
||||
|
|
|
|||
|
|
@ -7,10 +7,11 @@ SET source=%1
|
|||
SET where=%2
|
||||
CD %where%
|
||||
SET dest=ecl.nsi
|
||||
SET version=%3
|
||||
|
||||
type %source%1 | ..\c\cut.exe "@ECLDIR@" "%where%" > %dest%
|
||||
dir /s /b /a:-d | ..\c\cut.exe "ecl.exe" "/DELETE/" "ecl.nsi" "/DELETE/" "%where%\\" "" > ../aux_files
|
||||
dir /s /b /a:d | ..\c\cut.exe "ecl.exe" "/DELETE/" "ecl.nsi" "/DELETE/" "%where%\\" "" > ../aux_dirs
|
||||
type %source%1 | ..\c\cut.exe "@ECLDIR@" "%where%" "@ECLVERSION@" "%version%" > %dest%
|
||||
dir /b /a:-d | ..\c\cut.exe "ecl.exe" "/DELETE/" "ecl.nsi" "/DELETE/" "%where%\\" "" > ../aux_files
|
||||
dir /b /a:d | ..\c\cut.exe "ecl.exe" "/DELETE/" "ecl.nsi" "/DELETE/" "%where%\\" "" > ../aux_dirs
|
||||
echo HOLA
|
||||
for /f %%i in (../aux_dirs) do @echo %%i
|
||||
for /f %%i in (../aux_dirs) do @echo File /r "${ECLDIR}\%%i" >> %dest%
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
; HM NIS Edit Wizard helper defines
|
||||
!define PRODUCT_NAME "ECL"
|
||||
!define PRODUCT_VERSION "0.9d"
|
||||
!define PRODUCT_VERSION "@ECLVERSION@"
|
||||
!define PRODUCT_PUBLISHER "Juan Jose Garcia Ripoll"
|
||||
!define PRODUCT_WEB_SITE "http://ecls.sourceforge.net"
|
||||
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\ecl.exe"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue