diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-11 17:11:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-24 00:01:49 +0100 |
commit | 6bfec3edf52ed6145c3c89fb19d350498dd2b758 (patch) | |
tree | 6474526e72c555688af6efd220b015ec4351fa50 /pre-inst-env.in | |
parent | 349fd3b11f320453ad8eeb3031621d0ffcaf078d (diff) | |
download | gnu-guix-6bfec3edf52ed6145c3c89fb19d350498dd2b758.tar gnu-guix-6bfec3edf52ed6145c3c89fb19d350498dd2b758.tar.gz |
store: Add 'register-path' procedure.
* guix/store.scm (register-path): New procedure.
* tests/store.scm ("register-path"): New test.
* guix/config.scm.in (%guix-register-program): New variable.
* configure.ac: Compute and substitute 'guix_sbindir'. Compute
'guix_prefix'.
* pre-inst-env.in: Define 'GUIX_REGISTER'.
Diffstat (limited to 'pre-inst-env.in')
-rw-r--r-- | pre-inst-env.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pre-inst-env.in b/pre-inst-env.in index acdce61168..3f1fa59bb8 100644 --- a/pre-inst-env.in +++ b/pre-inst-env.in @@ -46,6 +46,10 @@ NIX_SUBSTITUTERS="$abs_top_builddir/nix/scripts/substitute-binary" NIX_SETUID_HELPER="$abs_top_builddir/nix-setuid-helper" export NIX_ROOT_FINDER NIX_SETUID_HELPER NIX_SUBSTITUTERS +# The 'guix-register' program. +GUIX_REGISTER="$abs_top_builddir/guix-register" +export GUIX_REGISTER + # The following variables need only be defined when compiling Guix # modules, but we define them to be on the safe side in case of # auto-compilation. |