Welcome to mirror list, hosted at ThFree Co, Russian Federation.

configure.sh « scripts - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 277e47da5efb20d76bb0e042bda10d14a07eefb0 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

if [ ! -f $DIR/configure.exe ]; then
	mcs $DIR/configure.cs -out:$DIR/configure.exe
fi

LANG=C mono $DIR/configure.exe "$@"