index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2011-02-22 16:48:51 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-02-22 16:48:51 -0600 |
commit | 6735807c0f5ec5464f2977da96b8981e2321940a (patch) | |
tree | 331511e9b58340bcaef817e307d6185e9f1b9a33 /lib/libalpm/add.c | |
parent | cfa760203295e99f65234896036f854b5047c90e (diff) |
-rw-r--r-- | lib/libalpm/add.c | 8 |
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 2cfa23b4..702b12e9 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -185,14 +185,6 @@ static int extract_single_file(struct archive *archive, return(0); } - /* if a file is in the add skiplist we never extract it */ - if(alpm_list_find_str(trans->skip_add, filename)) { - _alpm_log(PM_LOG_DEBUG, "%s is in trans->skip_add, skipping extraction\n", - entryname); - archive_read_data_skip(archive); - return(0); - } - /* Check for file existence. This is one of the more crucial parts * to get 'right'. Here are the possibilities, with the filesystem * on the left and the package on the top: |