https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c4110db0c7454b2fb6e82d7a3d89d79658a4042d authored by ffxbld on 10 June 2014, 01:00:53 UTC
Added FIREFOX_24_6_0esr_RELEASE FIREFOX_24_6_0esr_BUILD2 tag(s) for changeset 0762576b4db9. DONTBUILD CLOSED TREE a=release
Tip revision: c4110db
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