Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWade Berrier <wade@mono-cvs.ximian.com>2006-07-19 21:54:34 +0400
committerWade Berrier <wade@mono-cvs.ximian.com>2006-07-19 21:54:34 +0400
commit01c0e3bc14681809c7cd7ed842e4e5c1e7e537b6 (patch)
tree18080e517b05e749e103afb8bdd9aff88eef3842 /scripts
parent3776f99ea3978bdd414b288636f18a73f0878445 (diff)
* 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
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mono-find-provides.in3
1 files changed, 2 insertions, 1 deletions
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"`