diff options
author | Keith Packard <keithp@keithp.com> | 2013-12-18 14:22:51 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-12-18 14:22:51 -0800 |
commit | c0966cd40f05f3a65b0c977b4b92586a58192f4b (patch) | |
tree | 9c878a68ba43c36f0cab5624cb555650d2c3e287 | |
parent | eea036650e62bc0f8652155974b512686754fd13 (diff) |
micropeak: Compile for java 6
Don't a require later version as not all target OSes support it
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | micropeak/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/micropeak/Makefile.am b/micropeak/Makefile.am index 098a00fb..af46abc0 100644 --- a/micropeak/Makefile.am +++ b/micropeak/Makefile.am @@ -1,5 +1,5 @@ JAVAROOT=classes -AM_JAVACFLAGS=-encoding UTF-8 -Xlint:deprecation +AM_JAVACFLAGS=-target 1.6 -encoding UTF-8 -Xlint:deprecation -source 6 altoslibdir=$(libdir)/altos |