From a945fb7905597ff67f285b39004f607f737b14e9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 27 Jun 2006 12:17:25 +0000 Subject: * `nix-env --upgrade --eq': only upgrade if the old version is equal to the new version. This is actually useful. --- src/nix-env/main.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/nix-env/main.cc') diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index 0198aed575c9..400bb0d87734 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -476,7 +476,7 @@ static void opInstall(Globals & globals, } -typedef enum { utLt, utLeq, utAlways } UpgradeType; +typedef enum { utLt, utLeq, utEq, utAlways } UpgradeType; static void upgradeDerivations(Globals & globals, @@ -520,6 +520,7 @@ static void upgradeDerivations(Globals & globals, int d = compareVersions(drvName.version, newName.version); if (upgradeType == utLt && d < 0 || upgradeType == utLeq && d <= 0 || + upgradeType == utEq && d == 0 || upgradeType == utAlways) { if ((bestElem == availElems.end() || @@ -562,6 +563,7 @@ static void opUpgrade(Globals & globals, i != opFlags.end(); ++i) if (*i == "--lt") upgradeType = utLt; else if (*i == "--leq") upgradeType = utLeq; + else if (*i == "--eq") upgradeType = utEq; else if (*i == "--always") upgradeType = utAlways; else throw UsageError(format("unknown flag `%1%'") % *i); -- cgit 1.4.1