summaryrefslogtreecommitdiff
path: root/msvcc.sh
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2018-03-27 08:10:03 -0400
committerAnthony Green <green@moxielogic.com>2018-03-27 08:10:03 -0400
commit4f0c9cb39b7599312729278380ce63247bca226b (patch)
treef0279e0465d353702d519e3a9897dfbb38ca7566 /msvcc.sh
parentd3693b4665de7ef69b61fb4e483d5686302f9c69 (diff)
downloadlibffi-4f0c9cb39b7599312729278380ce63247bca226b.tar.gz
Use mixed cygpath paths
Diffstat (limited to 'msvcc.sh')
-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