swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 466a9af4208b43e35c008acf71a2bef5514e16d8 authored by Axel Naumann on 10 October 2023, 08:19:54 UTC
[foundation] Update version number to 6.29.99.
Tip revision: 466a9af
cl.sh
#! /bin/sh

# Simple interface to cl.exe, tansforming /cygdrive/... into "mixed" path.

args=

while [ "$1" != "" ]; do
   case "$1" in
   -I*) narg=`echo $1 | sed -e s/-I//`; args="$args -I`cygpath -m -- $narg`" ;;
   -c) args="$args -c "; shift; args="$args`cygpath -m -- $1`" ;;
   *) args="$args $1" ;;
   esac
   shift
done

cl.exe $args
stat=$?

if [ $stat -eq 126 ]; then
# cygwin causes spurious exit codes 126; just re-try.
   cl.exe $args
   stat=$?
fi

exit $stat
back to top