Use cygpath to convert windows paths
This commit is contained in:
10
msvcc.sh
10
msvcc.sh
@@ -147,13 +147,15 @@ do
|
|||||||
shift 1
|
shift 1
|
||||||
;;
|
;;
|
||||||
-I)
|
-I)
|
||||||
args="$args -I$2"
|
p=$(cygpath -w $2)
|
||||||
includes="$includes -I$2"
|
args="$args -I$p"
|
||||||
|
includes="$includes -I$p"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
-I*)
|
-I*)
|
||||||
args="$args $1"
|
p=$(cygpath -w ${1#-I})
|
||||||
includes="$includes $1"
|
args="$args -I$p"
|
||||||
|
includes="$includes -I$p"
|
||||||
shift 1
|
shift 1
|
||||||
;;
|
;;
|
||||||
-L*)
|
-L*)
|
||||||
|
|||||||
Reference in New Issue
Block a user