diff options
Diffstat (limited to 'devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl')
-rw-r--r-- | devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl b/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl new file mode 100644 index 000000000000..6e2670c38bcc --- /dev/null +++ b/devel/clo++/files/patch-src::contrib::xmlwrapp-0.2.2::configure.pl @@ -0,0 +1,11 @@ +--- src/contrib/xmlwrapp-0.2.2/configure.pl.orig Tue Jan 28 18:41:25 2003 ++++ src/contrib/xmlwrapp-0.2.2/configure.pl Tue Jan 28 18:41:43 2003 +@@ -191,7 +191,7 @@ + print "$output "; + + if ($output =~ /^(\d+\.\d+)\.(\d+)$/) { +- if ($1 >= 2.4 && $2 >= 7) { ++ if ($1 > 2.4 || ($1 == 2.4 && $2 >= 7)) { + print "[good]\n"; + } else { + print "[fail]\n"; |