Revision 5f24fec84abd5346efbd69608afbe8842648ab50 authored by ffxbld on 10 July 2012, 19:18:22 UTC, committed by ffxbld on 10 July 2012, 19:18:22 UTC
1 parent 63766c3
Raw File
msys-perl-wrapper
#!/bin/sh

args=""

for i in "${@}"
do
    case "$i" in
    -I?:/*)
        i="$(echo "${i}" | sed -e 's|^-I\(.\):/|-I/\1/|')"
	;;
    esac

    args="${args} '${i}'"
done

eval "exec perl $args"
back to top