Added cygwin-wrapper to the tip. Bug 141834.

This commit is contained in:
wtc%netscape.com 2002-08-23 01:03:57 +00:00
parent 18625bdcab
commit 1fc6948d32

17
nsprpub/build/cygwin-wrapper Executable file
View File

@ -0,0 +1,17 @@
#!/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