[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/376: nix-build: --add-root also takes 1 parameter
From: |
Ludovic Courtès |
Subject: |
13/376: nix-build: --add-root also takes 1 parameter |
Date: |
Wed, 28 Jan 2015 22:03:43 +0000 |
civodul pushed a commit to tag 1.8
in repository guix.
commit a457d5ad4d7f6cd4f817581de1b4f70cdad9c617
Author: Aristid Breitkreuz <address@hidden>
Date: Sun May 4 14:26:41 2014 +0200
nix-build: --add-root also takes 1 parameter
---
scripts/nix-build.in | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/nix-build.in b/scripts/nix-build.in
index 2f95e74..74307a5 100755
--- a/scripts/nix-build.in
+++ b/scripts/nix-build.in
@@ -93,7 +93,7 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
$n += 2;
}
- elsif ($arg eq "--max-jobs" || $arg eq "-j" || $arg eq "--max-silent-time"
|| $arg eq "--log-type" || $arg eq "--cores" || $arg eq "--timeout") {
+ elsif ($arg eq "--max-jobs" || $arg eq "-j" || $arg eq "--max-silent-time"
|| $arg eq "--log-type" || $arg eq "--cores" || $arg eq "--timeout" || $arg eq
'--add-root') {
$n++;
die "$0: `$arg' requires an argument\n" unless $n < scalar @ARGV;
push @buildArgs, ($arg, $ARGV[$n]);
- 05/376: Shut up some signedness warnings, (continued)
- 05/376: Shut up some signedness warnings, Ludovic Courtès, 2015/01/28
- 04/376: Ugly hack to allow --argstr values starting with a dash, Ludovic Courtès, 2015/01/28
- 06/376: Add primop ‘scopedImport’, Ludovic Courtès, 2015/01/28
- 08/376: Ensure that -I flags get included in nixPath, Ludovic Courtès, 2015/01/28
- 11/376: Rephrase @ operator description, Ludovic Courtès, 2015/01/28
- 12/376: dev-shell is a bash script, not sh, Ludovic Courtès, 2015/01/28
- 09/376: Make the Nix search path declarative, Ludovic Courtès, 2015/01/28
- 03/376: Disable parallel.sh test, Ludovic Courtès, 2015/01/28
- 10/376: Remove ExprBuiltin, Ludovic Courtès, 2015/01/28
- 02/376: nix-store -l: Fetch build logs from the Internet, Ludovic Courtès, 2015/01/28
- 13/376: nix-build: --add-root also takes 1 parameter,
Ludovic Courtès <=
- 07/376: Add constant ‘nixPath’, Ludovic Courtès, 2015/01/28
- 17/376: nix-env -qa --json: Generate valid JSON even if there are invalid meta attrs, Ludovic Courtès, 2015/01/28
- 14/376: Use std::unordered_set, Ludovic Courtès, 2015/01/28
- 15/376: Sort nixPath attributes, Ludovic Courtès, 2015/01/28
- 16/376: Fix test, Ludovic Courtès, 2015/01/28
- 21/376: Add autoloads, make code more concise & idiomatic, Ludovic Courtès, 2015/01/28
- 18/376: Print a warning when loading a large path into memory, Ludovic Courtès, 2015/01/28
- 19/376: Report daemon OOM better, Ludovic Courtès, 2015/01/28
- 22/376: Share code between scopedImport and import, Ludovic Courtès, 2015/01/28
- 28/376: Only add the importNative primop if the allow-arbitrary-code-during-evaluation option is true (default false), Ludovic Courtès, 2015/01/28