* scripts/mono-find-provides.in: Remove support for only scanning files in the gac.
authorWade Berrier <wade@mono-cvs.ximian.com>
Wed, 19 Jul 2006 17:54:34 +0000 (17:54 -0000)
committerWade Berrier <wade@mono-cvs.ximian.com>
Wed, 19 Jul 2006 17:54:34 +0000 (17:54 -0000)
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
scripts/mono-find-provides.in

index c030c707ed312d8fba508c9030f9f0c30035c1fd..4115e1b3d49ba234e723c38519bb096e17c160c3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-19  Wade Berrier <wberrier@novell.com>
+
+       * 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  <vargaz@gmail.com>
 
        * configure.in: Applied patch from Sergey Tikhonov <tsv@solvo.ru>. Beginning
index ff649639f470058ee2bcea531f410a34865751c4..f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56 100644 (file)
@@ -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"`