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:
authorAlan McGovern <alan@xamarin.com>2015-09-29 12:16:42 +0300
committerAlan McGovern <alan@xamarin.com>2015-09-29 12:26:56 +0300
commitc02b94d13a01504ccb98ba69d396ce8f83f4e27a (patch)
tree3985818ce7c4950a6eab66efc1ff65e3939fbad8 /configure
parentcf2b55cb8f2ab9bf20040671c4280289fd4a1cac (diff)
[build] Properly error out when a dependency does not exist
We should print a message saying it's missing, not explode because we couldn't invoke the binary.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 70e55b2904..e40c3d5391 100755
--- a/configure
+++ b/configure
@@ -294,7 +294,7 @@ if test `uname` = "Darwin"; then
# add in libsvn's directory as a fallback path. user-set paths will override it
export DYLD_FALLBACK_LIBRARY_PATH="$DYLD_FALLBACK_LIBRARY_PATH:/Library/Developer/CommandLineTools/usr/lib:/usr/local/lib:`pwd`/main/build/bin"
- ruby dependency_checker.rb 2> /dev/null || exit 456
+ ruby dependency_checker.rb || exit 1
fi
configure_packages