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-".
master
Ricardo Wurmus 2016-01-12 11:34:52 +01:00
parent 6b0d24b17c
commit 9f40b1171b
1 changed files with 1 additions and 1 deletions

View File

@ -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")