New test.
[mono.git] / scripts / mono-find-provides.in
index ba46722ae679b29999d1bacbb74ce52aea687522..f7ee80ea4cb2218f5f124cc950a37aca5b3ebb56 100644 (file)
@@ -12,6 +12,11 @@ IFS=$'\n'
 filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/'))
 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/"))
+# Disabled... see ChangeLog
+
 a=`which "$0"`
 d=`dirname "$a"`