https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 60e8b48fa676ee4d45375149e021a4bbe83ec6fc authored by ffxbld on 12 November 2013, 23:27:50 UTC
Added FIREFOX_25_0_1_RELEASE FIREFOX_25_0_1_BUILD1 tag(s) for changeset d20d499b219f. DONTBUILD CLOSED TREE a=release
Tip revision: 60e8b48
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