diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | urpmq | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ o add --conflicts o --requires now display the raw requires, use --requires-recursive to get the old behaviour (#29176) + o make "urpmq --list xxx" display "use -l to list files" and exit on error - urpmf: o fix mirrorlist handling o fix fallback on hdlist when xml-info not found @@ -203,6 +203,7 @@ if ($options{list_aliases}) { } exit 0; } elsif ($options{list}) { + !@names && !@src_names or $urpm->{fatal}(1, N("use -l to list files")); # --list lists all available packages: select them all @{$state->{selected}}{0 .. $#{$urpm->{depslist}}} = (); } else { |