Skip to content

Commit

Permalink
fix swig#10 adjusting mingw drive reference for LIBPATH
Browse files Browse the repository at this point in the history
GitMensch authored Oct 8, 2021
1 parent fa51488 commit c21e1ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cccl
Original file line number Diff line number Diff line change
@@ -123,13 +123,13 @@ EOF

-L)
shift
path=`echo "$1"`
path=`echo "$1" | sed 's#/\([a-zA-Z]\)#\1:#'`
linkopt+=("${slash}LIBPATH:$path")
;;

-L)
shift
path=`echo "$1" | sed 's/-L//'`
path=`echo "$1" | sed 's/-L//' | sed 's#/\([a-zA-Z]\)#\1:#'`
linkopt+=("${slash}LIBPATH:$path")
;;

0 comments on commit c21e1ad

Please sign in to comment.