mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
18 lines
312 B
Bash
Executable File
18 lines
312 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Stupid wrapper to avoid win32 dospath/cygdrive issues
|
|
#
|
|
prog=$1
|
|
shift
|
|
if test -z "$prog"; then
|
|
exit 0
|
|
fi
|
|
if test "$prog" = "-up"; then
|
|
prog=$1
|
|
shift
|
|
args=`echo $* | sed -e 's|-I\(.\):|-I/cygdrive/\1|g;'`
|
|
else
|
|
args=`echo $* | sed -e 's|/cygdrive/\(.\)/|\1:/|g;'`
|
|
fi
|
|
exec $prog $args
|