Skip to content

Commit

Permalink
Report our custom-patched javac version
Browse files Browse the repository at this point in the history
As reported by Curtis Rueden in bug 656,

	java -jar jars/javac-*.jar -version

did not report a valid version. The reason is the
version.properties-template file which we did not parse into a proper
version.properties file. We cannot do that anyway because we extracted
javac from OpenJDK6 b24 as per Ubuntu's sources (and applying custom
patches to address ImgLib2's overzealous use of overly-complicated
generics constructs), and therefore the JDK_VERSION would not even be
available.

So let's do the next best thing and hard-code the appropriate version
strings.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Sep 4, 2013
1 parent 9b4e4f1 commit add9fce
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -23,6 +23,6 @@
# questions.
#

jdk=$(JDK_VERSION)
full=$(FULL_VERSION)
release=$(RELEASE)
jdk=1.6.0_24
full=1.6.0_24-ubuntu-fiji1
release=1.6.0_24-fiji1

0 comments on commit add9fce

Please sign in to comment.