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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotheus Pokorra <timotheus.pokorra@gmail.com>2015-01-12 17:05:15 +0300
committerTimotheus Pokorra <timotheus.pokorra@gmail.com>2015-01-12 17:05:15 +0300
commitf7a2577f4bbb946c0db9b049f8c67dfcae9e8bff (patch)
treec0a988fc7660a7c029629058e9aa117ed45a6d6f /main/configure.in
parenta384ea39b0bd3c88eb8b00352c9e335793d372a8 (diff)
do not require gmcs but mcs in the PATH
mono from git master does not provide gmcs anymore
Diffstat (limited to 'main/configure.in')
-rw-r--r--main/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/configure.in b/main/configure.in
index 94e9d58d08..a9155ceaf8 100644
--- a/main/configure.in
+++ b/main/configure.in
@@ -17,14 +17,14 @@ PACKAGE_VERSION_LABEL="m4_esyscmd_s([grep ^Label ../version.config|cut -d "=" -f
COMPAT_ADDIN_VERSION=m4_esyscmd_s([grep ^CompatVersion ../version.config|cut -d "=" -f 2|tr -d '\n'])
AC_PATH_PROG(MONO, mono)
-AC_PATH_PROG(MCS, gmcs)
+AC_PATH_PROG(MCS, mcs)
if test "x$MONO" = "x" ; then
AC_MSG_ERROR([Can't find "mono" in your PATH])
fi
if test "x$MCS" = "x" ; then
- AC_MSG_ERROR([Can't find "gmcs" in your PATH])
+ AC_MSG_ERROR([Can't find "mcs" in your PATH])
fi
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)