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:
authorLluis Sanchez <slluis.devel@gmail.com>2015-01-13 11:53:43 +0300
committerLluis Sanchez <slluis.devel@gmail.com>2015-01-13 11:53:43 +0300
commit408efca83f2bf7fb58beb3cb3015a8b336f84c43 (patch)
tree87adc00f51bf4451a18341e8697ffd589fc38ff5 /main/configure.in
parentdefeb8106d5289a7e0184236c628640947f4ad5c (diff)
parentf7a2577f4bbb946c0db9b049f8c67dfcae9e8bff (diff)
Merge pull request #709 from tpokorra/master
do not require gmcs but mcs in the PATH
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 fec9a73109..34fcd46dba 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)