diff options
author | Graham Bloice <graham.bloice@trihedral.com> | 2015-01-12 11:26:59 +0000 |
---|---|---|
committer | Graham Bloice <graham.bloice@trihedral.com> | 2015-01-12 12:40:04 +0000 |
commit | d7bce3314085d0dc29d0d4eee3234770f066e61d (patch) | |
tree | 3e6fb1670f545b73ec19a4a9a6920aa57a447c8f /test | |
parent | 0385d1557d4bee1ae300643571b00dd468cb900f (diff) | |
download | wireshark-d7bce3314085d0dc29d0d4eee3234770f066e61d.tar.gz wireshark-d7bce3314085d0dc29d0d4eee3234770f066e61d.tar.bz2 wireshark-d7bce3314085d0dc29d0d4eee3234770f066e61d.zip |
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 'test')
-rwxr-xr-x | test/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh index 7d346a0a5e..b5f9e51ed8 100755 --- a/test/test.sh +++ b/test/test.sh @@ -31,7 +31,7 @@ PRINT_USAGE=0 # Ensure cygwin bin dir is on the path if running under it if [[ $OSTYPE == "cygwin" ]]; then - PATH="/usr/bin:$PATH" + PATH="$PATH:/usr/bin" fi while getopts "chs:" OPTION ; do |