From 0767c0ebc7dbd2ee674dc273cc68ca4cb488edbc Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 3 Dec 2018 18:27:00 +0100 Subject: eval load path setting at the right time --- guix/config.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guix/config.scm b/guix/config.scm index 7755410..55e264e 100644 --- a/guix/config.scm +++ b/guix/config.scm @@ -15,7 +15,9 @@ ;;; along with GNU Taler. If not, see . ;; Load modules relative to the script name. -(set! %load-path (cons ((@ (guix utils) current-source-directory)) %load-path)) +(eval-when (load compile eval) + (set! %load-path + (cons ((@ (guix utils) current-source-directory)) %load-path)) (use-modules (srfi srfi-1) @@ -40,6 +42,7 @@ ;;; this should eventually go upstream. ;;; + (define-record-type* my-fcgiwrap-configuration make-my-fcgiwrap-configuration my-fcgiwrap-configuration? -- cgit v1.2.3