summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmsvcc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/msvcc.sh b/msvcc.sh
index 7494a96..50e80fe 100755
--- a/msvcc.sh
+++ b/msvcc.sh
@@ -147,13 +147,13 @@ do
shift 1
;;
-I)
- p=$(cygpath -w $2)
+ p=$(cygpath -m $2)
args="$args -I$p"
includes="$includes -I$p"
shift 2
;;
-I*)
- p=$(cygpath -w ${1#-I})
+ p=$(cygpath -m ${1#-I})
args="$args -I$p"
includes="$includes -I$p"
shift 1