commit 0767c0ebc7dbd2ee674dc273cc68ca4cb488edbc
parent b1c707b530c101504cf308130ab1520dec361f1a
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 3 Dec 2018 18:27:00 +0100
eval load path setting at the right time
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/guix/config.scm b/guix/config.scm
@@ -15,7 +15,9 @@
;;; along with GNU Taler. If not, see <http://www.gnu.org/licenses/>.
;; 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> my-fcgiwrap-configuration
make-my-fcgiwrap-configuration
my-fcgiwrap-configuration?