aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/nsis
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-12-19 19:16:12 +0000
committerGuy Harris <guy@alum.mit.edu>2001-12-19 19:16:12 +0000
commit1e8ca8af4d4034807bb749090f669cd636b7d440 (patch)
treea25e961af152ea525eac6dabcd04db8b6de7f05d /packaging/nsis
parent887799e01a4a87fee62ef25fd548ba9050cac902 (diff)
From Motonori Shindo: don't put the PDB files into the release, as
they're not built and the executables already contain debugging information, and update the README.win32 file appropriately and add Text2Pcap and Mergecap to it. svn path=/trunk/; revision=4425
Diffstat (limited to 'packaging/nsis')
-rw-r--r--packaging/nsis/Makefile.nmake6
-rw-r--r--packaging/nsis/ethereal.nsi.in13
2 files changed, 3 insertions, 16 deletions
diff --git a/packaging/nsis/Makefile.nmake b/packaging/nsis/Makefile.nmake
index 1dcfc50528..01d61838b0 100644
--- a/packaging/nsis/Makefile.nmake
+++ b/packaging/nsis/Makefile.nmake
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.nmake,v 1.8 2001/12/12 01:29:07 guy Exp $
+# $Id: Makefile.nmake,v 1.9 2001/12/19 19:16:12 guy Exp $
#
#
# NSIS is a free packager/installer/uninstaller program for Win32.
@@ -12,8 +12,6 @@ include ../../config.nmake
EXE=../../ethereal.exe ../../tethereal.exe ../../editcap.exe \
../../text2pcap.exe ../../mergecap.exe
-PDB=../../ethereal.pdb ../../tethereal.pdb ../../editcap.pdb \
- ../../text2pcap.pdb ../../mergecap.pdb
DLL=../../wiretap/wiretap-$(WTAP_VERSION).dll
DOC=../../doc/ethereal.html \
../../doc/tethereal.html \
@@ -27,7 +25,7 @@ GPL=GPL.txt
PLUGINS=../../plugins/mgcp/mgcp.dll \
../../plugins/gryphon/gryphon.dll
-DELIVERABLES=$(EXE) $(DLL) $(DOC) $(GPL) $(PLUGINS) $(PDB)
+DELIVERABLES=$(EXE) $(DLL) $(DOC) $(GPL) $(PLUGINS)
ethereal-setup.exe : ethereal.nsi $(DELIVERABLES)
diff --git a/packaging/nsis/ethereal.nsi.in b/packaging/nsis/ethereal.nsi.in
index 491ab1c13c..8f8a28fb41 100644
--- a/packaging/nsis/ethereal.nsi.in
+++ b/packaging/nsis/ethereal.nsi.in
@@ -1,7 +1,7 @@
;
; ethereal.nsi
;
-; $Id: ethereal.nsi.in,v 1.10 2001/12/12 07:52:23 guy Exp $
+; $Id: ethereal.nsi.in,v 1.11 2001/12/19 19:16:12 guy Exp $
; ============================================================================
; Header configuration
@@ -122,16 +122,6 @@ File "..\..\plugins\giop\cosnaming.dll"
File "..\..\plugins\giop\coseventcomm.dll"
SectionEnd
-Section "Debug PDB Files"
-;-------------------------------------------
-SetOutPath $INSTDIR
-File "..\..\ethereal.pdb"
-File "..\..\tethereal.pdb"
-File "..\..\editcap.pdb"
-File "..\..\mergecap.pdb"
-File "..\..\text2pcap.pdb"
-SectionEnd
-
SectionDivider
;-------------------------------------------
@@ -162,7 +152,6 @@ Delete "$INSTDIR\mobileipv4.xml"
Delete "$INSTDIR\nasreq.xml"
Delete "$INSTDIR\sunping.xml"
Delete "$INSTDIR\*.exe"
-Delete "$INSTDIR\*.pdb"
Delete "$INSTDIR\*.html"
Delete "$INSTDIR\*.dll"
Delete "$INSTDIR\plugins\@VERSION@\coseventcomm.dll"