From 01c0e3bc14681809c7cd7ed842e4e5c1e7e537b6 Mon Sep 17 00:00:00 2001 From: Wade Berrier Date: Wed, 19 Jul 2006 17:54:34 +0000 Subject: [PATCH] * scripts/mono-find-provides.in: Remove support for only scanning files in the gac. The problem is that mono apps are often broken up into subpackages, and deps can only be resolved if the assemblies are in the gac, even when they sometimes shouldn't be. (See https://bugzilla.novell.com/show_bug.cgi?id=144655) svn path=/trunk/mono/; revision=62759 --- ChangeLog | 7 +++++++ scripts/mono-find-provides.in | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c030c707ed3..4115e1b3d49 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-07-19 Wade Berrier + + * scripts/mono-find-provides.in: Remove support for only scanning files in the gac. + The problem is that mono apps are often broken up into subpackages, and deps can only + be resolved if the assemblies are in the gac, even when they sometimes shouldn't be. + (See https://bugzilla.novell.com/show_bug.cgi?id=144655) + 2006-07-19 Zoltan Varga * configure.in: Applied patch from Sergey Tikhonov . Beginning diff --git a/scripts/mono-find-provides.in b/scripts/mono-find-provides.in index ff649639f47..f7ee80ea4cb 100644 --- a/scripts/mono-find-provides.in +++ b/scripts/mono-find-provides.in @@ -14,7 +14,8 @@ monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$")) # Only include files with /gac/ in path # (Allows packages to contain private assemblies that don't conflict with other packages) -monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/")) +#monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/")) +# Disabled... see ChangeLog a=`which "$0"` d=`dirname "$a"` -- 2.25.1