[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
124/376: Fix warning about non-existant -I directories
From: |
Ludovic Courtès |
Subject: |
124/376: Fix warning about non-existant -I directories |
Date: |
Wed, 28 Jan 2015 22:04:28 +0000 |
civodul pushed a commit to tag 1.8
in repository guix.
commit 5bed74d1b0acd8d8083fb82a31d907ad2348a91b
Author: Eelco Dolstra <address@hidden>
Date: Wed Aug 13 02:57:59 2014 +0200
Fix warning about non-existant -I directories
---
src/libexpr/eval.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc
index 87b6bc9..b752e1c 100644
--- a/src/libexpr/eval.cc
+++ b/src/libexpr/eval.cc
@@ -220,7 +220,7 @@ EvalState::EvalState(const Strings & _searchPath)
/* Initialise the Nix expression search path. */
Strings paths = tokenizeString<Strings>(getEnv("NIX_PATH", ""), ":");
- for (auto & i : _searchPath) addToSearchPath(i);
+ for (auto & i : _searchPath) addToSearchPath(i, true);
for (auto & i : paths) addToSearchPath(i);
addToSearchPath("nix=" + settings.nixDataDir + "/nix/corepkgs");
- 114/376: Refactor, (continued)
- 114/376: Refactor, Ludovic Courtès, 2015/01/28
- 117/376: Remove unnecessary call to addTempRoot(), Ludovic Courtès, 2015/01/28
- 115/376: Move some options out of globals, Ludovic Courtès, 2015/01/28
- 116/376: Doh, Ludovic Courtès, 2015/01/28
- 112/376: Add option ‘build-extra-chroot-dirs’, Ludovic Courtès, 2015/01/28
- 111/376: Get rid of "killing <pid>" message for unused build hooks, Ludovic Courtès, 2015/01/28
- 129/376: Remove log2html.xsl and friends, Ludovic Courtès, 2015/01/28
- 122/376: Warn about untrusted binary caches in extra-binary-caches, Ludovic Courtès, 2015/01/28
- 113/376: Update manual, Ludovic Courtès, 2015/01/28
- 126/376: Handle compound single dash options properly, Ludovic Courtès, 2015/01/28
- 124/376: Fix warning about non-existant -I directories,
Ludovic Courtès <=
- 127/376: Use regular file GC roots if possible, Ludovic Courtès, 2015/01/28
- 128/376: nix-log2xml: Handle UTF-8 characters, Ludovic Courtès, 2015/01/28
- 132/376: nix-shell: Use $XDG_RUNTIME_DIR, Ludovic Courtès, 2015/01/28
- 120/376: download-from-binary-cache.pl: Respect $SSL_CERT_FILE, Ludovic Courtès, 2015/01/28
- 123/376: Remove pointless NIX_LOG_TYPE environment variable, Ludovic Courtès, 2015/01/28
- 136/376: Propagate remote timeouts properly, Ludovic Courtès, 2015/01/28
- 131/376: Use $XDG_RUNTIME_DIR for temporary files, Ludovic Courtès, 2015/01/28
- 137/376: Reduce verbosity, Ludovic Courtès, 2015/01/28
- 133/376: Fix download-via-ssh, Ludovic Courtès, 2015/01/28
- 130/376: nix-log2xml: Handle newlines, Ludovic Courtès, 2015/01/28