#!/bin/sh

# this file exists in c-c only for MOZILLA_1_9_2_BRANCH
# and is a mirror of the same file in mozilla-central (1.9.3)

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"
