aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/nsis
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-07-24 21:25:29 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-07-24 21:25:29 +0000
commit0ef752136abaa59d4be1cd30cd2ce4d63acf2a64 (patch)
treecdadc716e82f9da021cbd6043afa48e560fa245e /packaging/nsis
parent156e034ef9412b20f01b07cfbc2c159b90faee14 (diff)
make the default to not use the /SOLID switch for SetCompressor, so buildbot is working again
svn path=/trunk/; revision=15049
Diffstat (limited to 'packaging/nsis')
-rw-r--r--packaging/nsis/ethereal.nsi6
1 files changed, 4 insertions, 2 deletions
diff --git a/packaging/nsis/ethereal.nsi b/packaging/nsis/ethereal.nsi
index 186f28964e..5bef000be1 100644
--- a/packaging/nsis/ethereal.nsi
+++ b/packaging/nsis/ethereal.nsi
@@ -6,8 +6,10 @@
!ifdef MAKENSIS_MODERN_UI
; Set the compression mechanism first
-; as of NSIS 2.07, solid compression is no longer default, so set the /SOLID switch (saves ~1MB)
-SetCompressor /SOLID lzma
+SetCompressor lzma
+; as of NSIS 2.07, solid compression is no longer default, so set the /SOLID switch (saves ~1MB),
+; which unfortunately creates an error with NSIS prior 2.07
+;SetCompressor /SOLID lzma
!endif
!ifdef GTK1_DIR & GTK2_DIR