[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27271: [PATCH 3/4] guix package: Always upgrade packages that have p
From: |
Ludovic Courtès |
Subject: |
bug#27271: [PATCH 3/4] guix package: Always upgrade packages that have propagated inputs. |
Date: |
Wed, 7 Jun 2017 11:25:05 +0200 |
* guix/scripts/package.scm (transaction-upgrade-entry): Always upgrade
packages that have propagated inputs.
---
guix/scripts/package.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index f050fad97..4de95869f 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -298,7 +298,10 @@ synopsis or description matches all of REGEXPS."
((=)
(let ((candidate-path (derivation->output-path
(package-derivation (%store) pkg))))
- (if (string=? path candidate-path)
+ ;; XXX: When there are propagated inputs, assume we need to
+ ;; upgrade the whole entry.
+ (if (and (string=? path candidate-path)
+ (null? (package-propagated-inputs pkg)))
transaction
(manifest-transaction-install-entry
(package->manifest-entry pkg output)
--
2.13.0