mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
196 B
Plaintext
17 lines
196 B
Plaintext
|
#!/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"
|