diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2006-01-10 18:45:32 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2006-01-10 18:45:32 +0000 |
commit | 325d297739133de9f17619d9e030c6051748230a (patch) | |
tree | 7bd305c340b58747ab7b9a8986338f536e441f5b | |
parent | 668e58626dfdb1077f3e1eb47187f6071d3ed302 (diff) | |
download | pacman-325d297739133de9f17619d9e030c6051748230a.tar.xz |
made use of the new ALLDEPS transaction flag to handle "makepkg -s"
-rw-r--r-- | src/pacman/pacman.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index e1dff655..aa1e0d4e 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -321,6 +321,7 @@ int parseargs(int argc, char *argv[]) case 'D': config->op = (config->op != PM_OP_MAIN ? 0 : PM_OP_DEPTEST); config->op_d_resolve = 1; + config->flags |= PM_TRANS_FLAG_ALLDEPS; break; case 'F': config->op = (config->op != PM_OP_MAIN ? 0 : PM_OP_UPGRADE); |