1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Ensure source/target is specified so that
bytecode is backwards compatible/avoiding encoding errors.
Author: James Page <james.page@ubuntu.com>
Forwarded: no
Index: libusb-java-0.8+ztex20090101/Makefile
===================================================================
--- libusb-java-0.8+ztex20090101.orig/Makefile 2012-08-07 13:31:24.000000000 +0100
+++ libusb-java-0.8+ztex20090101/Makefile 2012-08-07 13:37:22.199906759 +0100
@@ -22,7 +22,7 @@
GCC=gcc
STRIP=strip
CHMOD=chmod -x
-JAVAC=javac
+JAVAC=javac -source 1.5 -target 1.5 -encoding ISO-8859-1
RM=rm -f
INSTALL=install
INSTALLDIR=$(INSTALL) -d
|