gnu: icedtea-6: Fix directory name in "unpack" phase.
* gnu/packages/java.scm (icedtea-6)[arguments]: Change the directory prefix in the "unpack" phase to "icedtea6-".
This commit is contained in:
parent
6b0d24b17c
commit
9f40b1171b
|
@ -277,7 +277,7 @@ build process and its dependencies, whereas Make uses Makefile format.")
|
|||
(lambda* (#:key source inputs #:allow-other-keys)
|
||||
(and (zero? (system* "tar" "xvf" source))
|
||||
(begin
|
||||
(chdir (string-append ,name "-" ,version))
|
||||
(chdir (string-append "icedtea6-" ,version))
|
||||
(mkdir "openjdk.src")
|
||||
(with-directory-excursion "openjdk.src"
|
||||
(copy-file (assoc-ref inputs "openjdk6-src")
|
||||
|
|
Loading…
Reference in New Issue