build: Export NIX_ROOT_FINDER' and
NIX_SETUID_HELPER' from `pre-inst-env'.
* pre-inst-env.in (NIX_ROOT_FINDER, NIX_SETUID_HELPER): New variables. Reported by Cyril Roelandt <tipecaml@gmail.com>.
This commit is contained in:
parent
df77a46273
commit
151794bf5b
1 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# GNU Guix --- Functional package management for GNU
|
# GNU Guix --- Functional package management for GNU
|
||||||
# Copyright © 2012 Ludovic Courtès <ludo@gnu.org>
|
# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
||||||
#
|
#
|
||||||
# This file is part of GNU Guix.
|
# This file is part of GNU Guix.
|
||||||
#
|
#
|
||||||
|
@ -32,6 +32,12 @@ export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH
|
||||||
PATH="@abs_top_builddir@:$PATH"
|
PATH="@abs_top_builddir@:$PATH"
|
||||||
export PATH
|
export PATH
|
||||||
|
|
||||||
|
# Daemon helpers.
|
||||||
|
|
||||||
|
NIX_ROOT_FINDER="@abs_top_builddir@/nix/scripts/list-runtime-roots"
|
||||||
|
NIX_SETUID_HELPER="@abs_top_builddir@/nix-setuid-helper"
|
||||||
|
export NIX_ROOT_FINDER NIX_SETUID_HELPER
|
||||||
|
|
||||||
# The following variables need only be defined when compiling Guix
|
# The following variables need only be defined when compiling Guix
|
||||||
# modules, but we define them to be on the safe side in case of
|
# modules, but we define them to be on the safe side in case of
|
||||||
# auto-compilation.
|
# auto-compilation.
|
||||||
|
|
Reference in a new issue