diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-13 21:21:43 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-13 21:21:43 +0000 |
commit | b319e2ad7dd82fdbc333e9efe153a5d88e81db57 (patch) | |
tree | e655196b57ef4112266af8017f63766df533c451 | |
parent | 77c1607bfc5297238cfbb54091e05f87b1f5188a (diff) |
Being as people while about the odd kludge here and there im going to spend my time on fruitless stuff :P
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7295 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | win/inspircd.nsi | 4 | ||||
-rw-r--r-- | win/makeinstaller.bat | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/win/inspircd.nsi b/win/inspircd.nsi index abbaef1d1..09e59f293 100644 --- a/win/inspircd.nsi +++ b/win/inspircd.nsi @@ -163,8 +163,6 @@ SectionEnd Section "Modules" SEC04
SetOutPath "$INSTDIR\modules"
File "..\bin\${BUILD}\modules\m_*.so"
- Delete "$INSTDIR\bin\*.dll"
- Delete "$INSTDIR\modules\m_ssl*.so"
SectionEnd
Section "SSL Modules" SEC05
@@ -172,7 +170,7 @@ Section "SSL Modules" SEC05 SetOverwrite ifnewer
File "..\bin\${BUILD}\bin\*.dll"
SetOutPath "$INSTDIR\modules"
- File "..\bin\${BUILD}\modules\m_ssl*.so"
+ File "d:\temp\*.so"
SectionEnd
Section -AdditionalIcons
diff --git a/win/makeinstaller.bat b/win/makeinstaller.bat new file mode 100644 index 000000000..be97b379a --- /dev/null +++ b/win/makeinstaller.bat @@ -0,0 +1,6 @@ +@mkdir d:\temp\
+move ..\bin\release\modules\m_ssl_gnutls.so d:\temp\
+move ..\bin\release\modules\m_sslinfo.so d:\temp\
+move ..\bin\release\modules\m_ssl_oper_cert.so d:\temp\
+"C:\Program Files\NSIS\makensisw.exe" "inspircd.nsi"
+move d:\temp\*.so ..\bin\release\modules\
|