diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-09-02 05:22:50 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-09-02 05:22:50 +0000 |
commit | 47f57635f07b7caa1843f361c70421c56b5194ea (patch) | |
tree | dd0370caf3e4e503f43c642f8d609a8a91f43c41 | |
parent | 2b956b31dd881576758db6cf93c041a567a9798c (diff) | |
download | urpmi-47f57635f07b7caa1843f361c70421c56b5194ea.tar urpmi-47f57635f07b7caa1843f361c70421c56b5194ea.tar.gz urpmi-47f57635f07b7caa1843f361c70421c56b5194ea.tar.bz2 urpmi-47f57635f07b7caa1843f361c70421c56b5194ea.tar.xz urpmi-47f57635f07b7caa1843f361c70421c56b5194ea.zip |
handle new keywords in hdlists file.
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -723,7 +723,7 @@ sub add_distrib_media { chomp; s/\s*#.*$//; /^\s*$/ and next; - /^suppl/ and next; + /^(?:suppl|askmedia)/ and next; m/^\s*(?:noauto:)?(hdlist\S*\.cz2?)\s+(\S+)\s*(.*)$/ or $urpm->{error}(N("invalid hdlist description \"%s\" in hdlists file"), $_); my ($hdlist, $rpmsdir, $descr) = ($1, $2, $3); |