* scripts/mono-find-provides.in:
[mono.git] / scripts / mono-find-provides.in
index f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56..de468c27e685d0c96086dd1f0aadab8c38e75d74 100644 (file)
@@ -27,8 +27,11 @@ exec_prefix=$d/..
 libdir=$prefix/@reloc_libdir@
 bindir=$d
 
-[ -x $bindir/monodis ] || exit 0;
-[ -f $libdir/libmono.so ] || exit 0;
+# Bail out if monodis or libmono is missing
+if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono.so ] ; then
+       echo "monodis missing or unusable, exiting..."
+       exit 1
+fi
 
 
 # set LD_LIBRARY_PATH to ensure that libmono.so is found