aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGraeme Lunt <graeme.lunt@smhs.co.uk>2007-11-24 11:45:51 +0000
committerGraeme Lunt <graeme.lunt@smhs.co.uk>2007-11-24 11:45:51 +0000
commit24f27a48ecac7eb23f82878aaadb9517d9b4c36b (patch)
treee90de2d454ffe593dbefef0a34d643ab38ea95a7 /tools
parent62150ef57e48246f2b6072746bdb9c3410b06ff3 (diff)
Support for the automatic configuration of the UPX dll/exe packer.
config.nmake - default UPX to the downloaded version in $WIRESHARK_LIBS win32-setup.sh - updated to also add executables bit to exes - and also use new tag Makefile.nmake - to download UPX (and also use new version of user-guide) svn path=/trunk/; revision=23562
Diffstat (limited to 'tools')
-rwxr-xr-xtools/win32-setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/win32-setup.sh b/tools/win32-setup.sh
index 63f4dac295..de32346065 100755
--- a/tools/win32-setup.sh
+++ b/tools/win32-setup.sh
@@ -6,7 +6,7 @@
# http://anonsvn.wireshark.org/wireshark-win32-libs/tags/<date>/packages
# in order to provide backward compatibility with older trees (e.g. a
# previous release or an older SVN checkout).
-DOWNLOAD_PREFIX="http://anonsvn.wireshark.org/wireshark-win32-libs/tags/2007-11-13/packages/"
+DOWNLOAD_PREFIX="http://anonsvn.wireshark.org/wireshark-win32-libs/tags/2007-11-24/packages/"
# Set DOWNLOAD_PREFIX to /packages to test uploads before creating the tag.
# DOWNLOAD_PREFIX="http://anonsvn.wireshark.org/wireshark-win32-libs/trunk/packages/"
@@ -96,8 +96,8 @@ case "$1" in
echo "Extracting $DEST_PATH/$PACKAGE into $DEST_PATH/$DEST_SUBDIR"
unzip -oq "$DEST_PATH/$PACKAGE" ||
err_exit "Couldn't unpack $DEST_PATH/$PACKAGE"
- echo "Verifying that the DLLs in $DEST_PATH/$DEST_SUBDIR are executable."
- for i in `/usr/bin/find $DEST_PATH/$DEST_SUBDIR -name \*\.dll` ; do
+ echo "Verifying that the DLLs and EXEs in $DEST_PATH/$DEST_SUBDIR are executable."
+ for i in `/usr/bin/find $DEST_PATH/$DEST_SUBDIR \( -name *\.dll -o -name *\.exe \)` ; do
if [ ! -x "$i" ] ; then
echo "Changing file permissions (add executable bit) to:"
echo "$i"