summaryrefslogtreecommitdiff
path: root/tools/runa2x.sh
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-01-12 11:26:59 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2015-01-12 12:40:04 +0000
commitd7bce3314085d0dc29d0d4eee3234770f066e61d (patch)
tree3e6fb1670f545b73ec19a4a9a6920aa57a447c8f /tools/runa2x.sh
parent0385d1557d4bee1ae300643571b00dd468cb900f (diff)
downloadwireshark-d7bce3314085d0dc29d0d4eee3234770f066e61d.tar.gz
Fix Cygwin path
Fix the Cygwin path added for tests so that Cygwin comes after the existing path and that the correct link command is found for exntest. Same change to runa2x.sh to be consistent. Change-Id: I177a5e7d17a0077b0e8ca7d264d7e725a5312e24 Reviewed-on: https://code.wireshark.org/review/6503 Petri-Dish: Graham Bloice <graham.bloice@trihedral.com> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'tools/runa2x.sh')
-rw-r--r--tools/runa2x.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/runa2x.sh b/tools/runa2x.sh
index 21f4379af5..1c234f49ab 100644
--- a/tools/runa2x.sh
+++ b/tools/runa2x.sh
@@ -30,7 +30,7 @@
# Ensure cygwin bin dir is on the path if running under it
if [[ $OSTYPE == "cygwin" ]]; then
- PATH="/usr/bin:$PATH"
+ PATH="$PATH:/usr/bin"
else
>&2 echo "We're trying to limit the scope of this insanity to CMake + Cygwin"
exit 1