From 58b240783c8a1c716731f83c20da47f7dc267aa7 Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Wed, 15 Mar 2017 22:12:11 -0400 Subject: [PATCH] gnu: ccl: Forcibly set CCL_DEFAULT_DIRECTORY. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/lisp.scm (ccl)[arguments]: Unconditionally set the CCL_DEFAULT_DIRECTORY environment variable in the wrapper script. Signed-off-by: Ludovic Courtès --- gnu/packages/lisp.scm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 208da703a0..1fcd316fad 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -483,9 +483,7 @@ statistical profiler, a code coverage tool, and many other extensions.") (display (string-append "#!" bash "/bin/sh\n" - "if [ -z \"$CCL_DEFAULT_DIRECTORY\" ]; then\n" - " CCL_DEFAULT_DIRECTORY=" libdir "\n" - "fi\n" + "CCL_DEFAULT_DIRECTORY=" libdir "\n" "export CCL_DEFAULT_DIRECTORY\n" "exec " libdir kernel "\n")))) (chmod wrapper #o755)))