mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: ccl: Fix missing command line argument support in wrapper.
* gnu/packages/lisp.scm (ccl): Fix missing command line argument support in wrapper.
This commit is contained in:
parent
85e9c4b919
commit
eff8e0b4d9
1 changed files with 2 additions and 3 deletions
|
@ -550,9 +550,8 @@ (define-public ccl
|
|||
(display
|
||||
(string-append
|
||||
"#!" bash "/bin/sh\n"
|
||||
"CCL_DEFAULT_DIRECTORY=" libdir "\n"
|
||||
"export CCL_DEFAULT_DIRECTORY\n"
|
||||
"exec " libdir kernel "\n"))))
|
||||
"export CCL_DEFAULT_DIRECTORY=" libdir "\n"
|
||||
"exec -a \"$0\" " libdir kernel " \"$@\"\n"))))
|
||||
(chmod wrapper #o755))
|
||||
#t)))))
|
||||
(supported-systems '("i686-linux" "x86_64-linux" "armhf-linux"))
|
||||
|
|
Loading…
Reference in a new issue