aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win32-setup.sh
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2014-07-21 03:11:42 +0200
committerJörg Mayer <jmayer@loplof.de>2014-07-21 01:13:21 +0000
commit56a241137aeccb29268a4c0b8f924fc8a1b50d56 (patch)
tree3562f434395a85f3bd6f385da489758eb8eb5efd /tools/win32-setup.sh
parent494092a4181e24dc039e9f8edbe9a07edeeeb866 (diff)
Remove tools/win32-setup.sh and tools/win64-setup.sh
Change-Id: Ifdc57304a0109f60260dc73d95b0598ddca81805 Reviewed-on: https://code.wireshark.org/review/3146 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'tools/win32-setup.sh')
-rwxr-xr-xtools/win32-setup.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/tools/win32-setup.sh b/tools/win32-setup.sh
deleted file mode 100755
index d056537fd6..0000000000
--- a/tools/win32-setup.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-#
-# Copyright 2013 Gerald Combs <gerald@wireshark.org>
-#
-# Wireshark - Network traffic analyzer
-# By Gerald Combs <gerald@wireshark.org>
-# Copyright 1998 Gerald Combs
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-# 32-bit wrapper for win-setup.sh.
-
-export DOWNLOAD_TAG="2014-06-05"
-
-WIN_SETUP=`echo $0 | sed -e s/win32/win/`
-
-if [ -z "$*" ]; then
- exec $WIN_SETUP $@
-fi
-case "$1" in
---download|--settag|--checktag)
- exec $WIN_SETUP $@ $DOWNLOAD_TAG
- ;;
-*)
- exec $WIN_SETUP $@
- ;;
-esac