aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-12-01 16:56:37 +0000
committerGerald Combs <gerald@wireshark.org>2004-12-01 16:56:37 +0000
commit1007a85912c24103d6f986e2f41f6825ee73b5a2 (patch)
treee4129ff136727cb8c6f32cc7f166b25bf96c7f69 /tools
parent679479be68b0a59758ffefa420fbb60d3138e1dd (diff)
If bash is run as a non-login shell, it doesn't read /etc/profile. Under
Cygwin this has the side effect of making the Windows "find" command appear first in the path instead of Cygwin's "find" command. Call /usr/bin/find explicitly in win32-setup.sh. svn path=/trunk/; revision=12639
Diffstat (limited to 'tools')
-rw-r--r--tools/win32-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/win32-setup.sh b/tools/win32-setup.sh
index c3ee031217..7d62d1cc9f 100644
--- a/tools/win32-setup.sh
+++ b/tools/win32-setup.sh
@@ -71,7 +71,7 @@ case "$1" in
unzip -nq "$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 `find $DEST_PATH/$DEST_SUBDIR -name \*\.dll` ; do
+ for i in `/usr/bin/find $DEST_PATH/$DEST_SUBDIR -name \*\.dll` ; do
if [ ! -x "$i" ] ; then
echo "Changing file permissions (add executable bit) to:"
echo "$i"