From 7adc936b055e336dadd7fed76292ee55eade684a Mon Sep 17 00:00:00 2001 From: Wade Berrier Date: Mon, 17 Jul 2006 19:34:28 +0000 Subject: [PATCH] * scripts/mono-find-requires.in: Change rpm requires to >= 1.0.3300.0 instead of =, since we don't explicitly provide 1.0.3300.0 versions. svn path=/trunk/mono/; revision=62688 --- ChangeLog | 5 +++++ scripts/mono-find-requires.in | 10 +++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9b1f87f5b44..addf73e4e8f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-07-17 Wade Berrier + + * scripts/mono-find-requires.in: Change rpm requires to >= 1.0.3300.0 instead of + =, since we don't explicitly provide 1.0.3300.0 versions. + 2006-07-09 Zoltan Varga * docs/exception-handling.txt: Update libunwind status since it is not really diff --git a/scripts/mono-find-requires.in b/scripts/mono-find-requires.in index a721f23997f..c2b8832f956 100644 --- a/scripts/mono-find-requires.in +++ b/scripts/mono-find-requires.in @@ -38,12 +38,16 @@ REQUIRES=$( sub(/Version=/, "", $2); VERSION=$2 } - + (START==1) && /^\tName=/ { sub(/Name=/, "", $1); LIBNAME=$1 - - print "mono(" LIBNAME ") = " VERSION + # Allow rpm deps to be resolved for 1.0 profile version + if (VERSION=="1.0.3300.0") + OP=">=" + else + OP="=" + print "mono(" LIBNAME ") " OP " " VERSION START=0 } ') 2> /dev/null -- 2.25.1