X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=scripts%2Fmono-find-provides.in;h=c9210060c26e83fd628c11705e0147b8d2c02913;hb=6bdfc2f092d0a27f1b33f2d1cbe27a2955a4e970;hp=f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56;hpb=987f8c63e214937c50dcb308149f7558a2cbba41;p=mono.git diff --git a/scripts/mono-find-provides.in b/scripts/mono-find-provides.in index f7ee80ea4cb..c9210060c26 100644 --- a/scripts/mono-find-provides.in +++ b/scripts/mono-find-provides.in @@ -17,22 +17,23 @@ monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$")) #monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/")) # Disabled... see ChangeLog -a=`which "$0"` -d=`dirname "$a"` - # Set the prefix, unless it is overriden (used when building mono rpms) -: ${prefix=$d/..} +: ${prefix=@prefix@} -exec_prefix=$d/.. libdir=$prefix/@reloc_libdir@ -bindir=$d +bindir=$prefix/bin -[ -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-2.0.so.1 ] ; then + echo "monodis missing or unusable, exiting..." 1>&2 + exit 1 +fi -# set LD_LIBRARY_PATH to ensure that libmono.so is found +# set LD_LIBRARY_PATH to ensure that libmono is found export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} +# and set MONO_PATH to ensure that mscorlib.dll can be found +export MONO_PATH=$prefix/lib/mono/2.0 for i in "${monolist[@]}"; do ($bindir/monodis --assembly $i | awk '