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:
authorJo Shields <jo.shields@xamarin.com>2015-08-11 21:41:23 +0300
committerJo Shields <jo.shields@xamarin.com>2015-08-11 21:43:34 +0300
commitcdb098617af97c6af76e9048af62e8e5e778b5b6 (patch)
tree697b10a001c0a1ff928c14df7ed639a1e991901d /scripts
parentbf8f49aa7aa418c450394c5c2328cb809a392de0 (diff)
Un-revoke fix in BNC#144655 - mono-find-provides should ONLY work on GAC libraries, and any packages which break on this behaviour should be fixed - rather than generating utterly broken Provides.
(cherry picked from commit 1f4133a06f252ec1b78637dd91e49f50836cf570)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mono-find-provides.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mono-find-provides.in b/scripts/mono-find-provides.in
index 155690d75ad..5e440ab046b 100644
--- a/scripts/mono-find-provides.in
+++ b/scripts/mono-find-provides.in
@@ -14,7 +14,7 @@ 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
# Set the prefix, unless it is overriden (used when building mono rpms)