From 23b35b838587cf83ff70afb0564576837d621a9a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 18 Jan 2008 14:38:08 +0000 Subject: - urpmf: o display a warning when searching "xxx(yyy)" since it is handled as a regexp and so the parentheses are useless. suggest using --literal --- urpm/args.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'urpm') diff --git a/urpm/args.pm b/urpm/args.pm index de7c6a58..b676a891 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -347,6 +347,7 @@ sub add_urpmf_parameter { if ($::literal) { $p = quotemeta $p; } else { + $p =~ /\([^?|]*\)$/ and $urpm->{error}(N("by default urpmf awaits a regexp. you should use option \"--literal\"")); push @::raw_non_literals, $p; # quote "+" chars for packages with + in their names $p =~ s/\+/\\+/g; -- cgit v1.2.1