https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a15b89716891c56c0abc22905f5dd120a610e3a4 authored by ffxbld on 15 August 2012, 05:31:42 UTC
Added FENNEC_15_0b5_RELEASE FENNEC_15_0b5_BUILD1 tag(s) for changeset 760e45712f64. DONTBUILD CLOSED TREE a=release
Tip revision: a15b897
msys-perl-wrapper
#!/bin/sh
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.


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