gnu: icedtea-7: Avoid massive rebuild.
Reported by Efraim Flashner.
* gnu/packages/java.scm (icedtea-7)[arguments]: Change 'lib-path'
definition in 'install-libjvm' to avoid the rebuilds that commit
1b6f99ea53
would otherwise entail.
This commit is contained in:
parent
7b6a8e23b0
commit
048d21a873
|
@ -1376,18 +1376,17 @@ bootstrapping purposes.")
|
|||
(add-after 'install 'install-libjvm
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((lib-path (string-append (assoc-ref outputs "out")
|
||||
"/lib/"
|
||||
;; See 'INSTALL_ARCH_DIR' in
|
||||
;; 'configure'.
|
||||
,(match (%current-system)
|
||||
("i686-linux"
|
||||
"i386")
|
||||
"/lib/i386")
|
||||
("x86_64-linux"
|
||||
"amd64")
|
||||
"/lib/amd64")
|
||||
("armhf-linux"
|
||||
"arm")
|
||||
"/lib/arm")
|
||||
("aarch64-linux"
|
||||
"aarch64")))))
|
||||
"/lib/aarch64")))))
|
||||
(symlink (string-append lib-path "/server/libjvm.so")
|
||||
(string-append lib-path "/libjvm.so")))
|
||||
#t))
|
||||
|
|
Loading…
Reference in New Issue