gnu: abcl: Fix quoting in wrapper script.
* gnu/packages/java.scm (abcl)[arguments]<#:phases>: Fix quoting in installed wrapper script. Also set hash-bang to bash since '[[' is used. Change-Id: I09ee266764c455194ab6097f096378ee1a986bcb Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
d2677a1ebb
commit
56e607efc8
1 changed files with 3 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
||||||
;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
;;; Copyright © 2021 Pierre Langlois <pierre.langlois@gmx.com>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2022 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2022 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
|
;;; Copyright © 2024 Paul A. Patience <paul@apatience.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -13578,14 +13579,14 @@ network protocols, and core version control algorithms.")
|
||||||
":"
|
":"
|
||||||
share "abcl-contrib.jar")))
|
share "abcl-contrib.jar")))
|
||||||
(display (string-append
|
(display (string-append
|
||||||
"#!" (which "sh") "\n"
|
"#!" (which "bash") "\n"
|
||||||
"if [[ -z $CLASSPATH ]]; then\n"
|
"if [[ -z $CLASSPATH ]]; then\n"
|
||||||
" cp=\"" classpath "\"\n"
|
" cp=\"" classpath "\"\n"
|
||||||
"else\n"
|
"else\n"
|
||||||
" cp=\"" classpath ":$CLASSPATH\"\n"
|
" cp=\"" classpath ":$CLASSPATH\"\n"
|
||||||
"fi\n"
|
"fi\n"
|
||||||
"exec " (which "java")
|
"exec " (which "java")
|
||||||
" -cp $cp org.armedbear.lisp.Main $@\n")))))
|
" -cp \"$cp\" org.armedbear.lisp.Main \"$@\"\n")))))
|
||||||
(chmod (string-append bin "abcl") #o755)
|
(chmod (string-append bin "abcl") #o755)
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://abcl.org/")
|
(home-page "https://abcl.org/")
|
||||||
|
|
Reference in a new issue