aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win-setup.sh
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2010-10-04 22:00:50 +0000
committerStephen Fisher <steve@stephen-fisher.com>2010-10-04 22:00:50 +0000
commit7b35e1195c6371ec43399895335ce9d47f51f51d (patch)
treebbe9f46e656c34b943dc154b93f567305c3c1c04 /tools/win-setup.sh
parent617864a070f784f59fa8b0a2fcd31f37592b6e9b (diff)
Stop the MS-DOS style path name warnings when compiling on Windows.
svn path=/trunk/; revision=34375
Diffstat (limited to 'tools/win-setup.sh')
-rwxr-xr-xtools/win-setup.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/win-setup.sh b/tools/win-setup.sh
index 2a15f3312a..8ee3e9ab8f 100755
--- a/tools/win-setup.sh
+++ b/tools/win-setup.sh
@@ -130,7 +130,7 @@ case "$1" in
if [ -z "$2" -o -z "$3" -o -z "$4" ] ; then
usage
fi
- DEST_PATH=`cygpath --dos "$2"`
+ DEST_PATH=`cygpath "$2"`
PACKAGE_PATH=$4
PACKAGE=`basename "$PACKAGE_PATH"`
if [ ! -e $DEST_PATH/$PACKAGE ] ; then
@@ -141,7 +141,7 @@ case "$1" in
if [ -z "$2" -o -z "$3" -o -z "$4" ] ; then
usage
fi
- DEST_PATH=`cygpath --dos "$2"`
+ DEST_PATH=`cygpath "$2"`
DEST_SUBDIR=$3
PACKAGE_PATH=$4
PACKAGE=`basename "$PACKAGE_PATH"`
@@ -176,14 +176,14 @@ case "$1" in
if [ -z "$2" ] ; then
usage
fi
- DEST_PATH=`cygpath --dos "$2"`
+ DEST_PATH=`cygpath "$2"`
echo "$DOWNLOAD_TAG" > $DEST_PATH/$TAG_FILE
;;
--checktag)
if [ -z "$2" ] ; then
usage
fi
- DEST_PATH=`cygpath --dos "$2"`
+ DEST_PATH=`cygpath "$2"`
WIN_PATH=`cygpath --windows "$2"`
LAST_TAG=`cat $DEST_PATH/$TAG_FILE 2> /dev/null`
if [ "$DOWNLOAD_TAG" != "$LAST_TAG" ] ; then