This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository libjaxp1.3-java.
commit c88fe4e43a591724501f9ecdfa648c735d0b004c Author: Arnaud Vandyck <[email protected]> Date: Thu Aug 3 08:31:24 2006 +0000 libjaxp1.3-java (1.3.03-4) unstable; urgency=low * debian/rules: using /usr/lib/jvm/java-gcj/bin/javac to build, not gcj (closes: #379530) -- Arnaud Vandyck <[email protected]> Thu, 3 Aug 2006 10:30:58 +0200 --- debian/changelog | 7 +++++++ debian/rules | 8 +++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5eee963..1960a4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libjaxp1.3-java (1.3.03-4) unstable; urgency=low + + * debian/rules: using /usr/lib/jvm/java-gcj/bin/javac to build, not gcj + (closes: #379530) + + -- Arnaud Vandyck <[email protected]> Thu, 3 Aug 2006 10:30:58 +0200 + libjaxp1.3-java (1.3.03-3) unstable; urgency=low * debian/control: I am the uploader, not Stefan. diff --git a/debian/rules b/debian/rules index 35e8db0..0d9dace 100755 --- a/debian/rules +++ b/debian/rules @@ -3,6 +3,8 @@ include /usr/share/cdbs/1/rules/debhelper.mk +JAVA_HOME := /usr/lib/jvm/java-gcj + clean:: rm -rf build debian/build-stamp @@ -11,9 +13,9 @@ debian/build-stamp: mkdir -p build/license # An alternative would be to build the classes using GCJ - gcj -C -O2 -d build `find javax org -name \*.java` - #jikes -bootclasspath /usr/share/classpath/glibj.zip -d build `find javax org -name \*.java` + $(JAVA_HOME)/bin/javac -d build `find javax org -name \*.java` cp LICENSE.*.txt README.*.txt build/license - cd build && jar -c -m ../manifest.commons -f jaxp-1.3.jar javax license org + cd build && $(JAVA_HOME)/bin/jar -c -m ../manifest.commons \ + -f jaxp-1.3.jar javax license org touch debian/build-stamp -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libjaxp1.3-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

