aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/nix-build.in12
-rw-r--r--src/libmain/shared.cc10
-rw-r--r--src/libmain/shared.hh1
-rw-r--r--src/nix-instantiate/nix-instantiate.cc8
-rw-r--r--src/nix-store/nix-store.cc10
5 files changed, 18 insertions, 23 deletions
diff --git a/scripts/nix-build.in b/scripts/nix-build.in
index afe0679a4..3ca3a1aaf 100755
--- a/scripts/nix-build.in
+++ b/scripts/nix-build.in
@@ -46,7 +46,7 @@ Flags:
--no-out-link: do not create the `result' symlink
--out-link / -o NAME: create symlink NAME instead of `result'
--attr / -A ATTR: select a specific attribute from the Nix expression
-
+
--run-env: build dependencies of the specified derivation, then start a
shell with the environment of the derivation
--command: command to run with `--run-env'
@@ -114,7 +114,7 @@ EOF
push @buildArgs, "--dry-run";
$dryRun = 1;
}
-
+
elsif ($arg eq "--show-trace") {
push @instArgs, $arg;
}
@@ -122,22 +122,22 @@ EOF
elsif ($arg eq "-") {
@exprs = ("-");
}
-
+
elsif ($arg eq "--verbose" or substr($arg, 0, 2) eq "-v") {
push @buildArgs, $arg;
push @instArgs, $arg;
$verbose = 1;
}
-
+
elsif ($arg eq "--quiet") {
push @buildArgs, $arg;
push @instArgs, $arg;
}
-
+
elsif ($arg eq "--run-env") {
$runEnv = 1;
}
-
+
elsif ($arg eq "--command") {
$n++;
die "$0: `$arg' requires an argument\n" unless $n < scalar @ARGV;
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc
index d39816586..026db4173 100644
--- a/src/libmain/shared.cc
+++ b/src/libmain/shared.cc
@@ -33,16 +33,6 @@ static void sigintHandler(int signo)
}
-Path makeRootName(const Path & gcRoot, int & counter)
-{
- counter++;
- if (counter == 1)
- return gcRoot;
- else
- return (format("%1%-%2%") % gcRoot % counter).str();
-}
-
-
void printGCWarning()
{
static bool haveWarned = false;
diff --git a/src/libmain/shared.hh b/src/libmain/shared.hh
index 7849e10e3..c69879a12 100644
--- a/src/libmain/shared.hh
+++ b/src/libmain/shared.hh
@@ -26,7 +26,6 @@ MakeError(UsageError, nix::Error);
class StoreAPI;
/* Ugh. No better place to put this. */
-Path makeRootName(const Path & gcRoot, int & counter);
void printGCWarning();
void printMissing(StoreAPI & store, const PathSet & paths);
diff --git a/src/nix-instantiate/nix-instantiate.cc b/src/nix-instantiate/nix-instantiate.cc
index d86c9fc84..bca65d072 100644
--- a/src/nix-instantiate/nix-instantiate.cc
+++ b/src/nix-instantiate/nix-instantiate.cc
@@ -64,9 +64,11 @@ void processExpr(EvalState & state, const Strings & attrPaths,
Path drvPath = i->queryDrvPath(state);
if (gcRoot == "")
printGCWarning();
- else
- drvPath = addPermRoot(*store, drvPath,
- makeRootName(gcRoot, rootNr), indirectRoot);
+ else {
+ Path rootName = gcRoot;
+ if (++rootNr > 1) rootName += "-" + int2String(rootNr);
+ drvPath = addPermRoot(*store, drvPath, rootName, indirectRoot);
+ }
std::cout << format("%1%\n") % drvPath;
}
}
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index c182dbe49..d7b998fae 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -64,15 +64,19 @@ static PathSet realisePath(const Path & path)
if (isDerivation(path)) {
store->buildPaths(singleton<PathSet>(path));
Derivation drv = derivationFromPath(*store, path);
+ rootNr++;
PathSet outputs;
foreach (DerivationOutputs::iterator, i, drv.outputs) {
Path outPath = i->second.path;
if (gcRoot == "")
printGCWarning();
- else
- outPath = addPermRoot(*store, outPath,
- makeRootName(gcRoot, rootNr), indirectRoot);
+ else {
+ Path rootName = gcRoot;
+ if (rootNr > 1) rootName += "-" + int2String(rootNr);
+ if (i->first != "out") rootName += "-" + i->first;
+ outPath = addPermRoot(*store, outPath, rootName, indirectRoot);
+ }
outputs.insert(outPath);
}
return outputs;