[pkg-java] r5915 - branches/eclipse/eclipse-3.2/debian

mkoch at alioth.debian.org mkoch at alioth.debian.org
Sat Mar 1 13:19:08 UTC 2008


Author: mkoch
Date: 2008-03-01 13:19:08 +0000 (Sat, 01 Mar 2008)
New Revision: 5915

Modified:
   branches/eclipse/eclipse-3.2/debian/changelog
   branches/eclipse/eclipse-3.2/debian/rules
Log:
* Suppress warnings from javac.

Modified: branches/eclipse/eclipse-3.2/debian/changelog
===================================================================
--- branches/eclipse/eclipse-3.2/debian/changelog	2008-03-01 12:37:13 UTC (rev 5914)
+++ branches/eclipse/eclipse-3.2/debian/changelog	2008-03-01 13:19:08 UTC (rev 5915)
@@ -1,3 +1,9 @@
+eclipse (3.2.2-6) UNRELEASED; urgency=low
+
+  * Suppress warnings from javac.
+
+ -- Michael Koch <konqueror at gmx.de>  Thu, 14 Feb 2008 16:11:12 +0100
+
 eclipse (3.2.2-5) unstable; urgency=low
 
   * Added junit4 support.

Modified: branches/eclipse/eclipse-3.2/debian/rules
===================================================================
--- branches/eclipse/eclipse-3.2/debian/rules	2008-03-01 12:37:13 UTC (rev 5914)
+++ branches/eclipse/eclipse-3.2/debian/rules	2008-03-01 13:19:08 UTC (rev 5915)
@@ -251,7 +251,7 @@
 	rm -r icu4j-build-temp
 
 	@cd $(SOURCE_TREE)/baseLocation/plugins; \
-	tar xfj ../../../$(SOURCE_JSCH); \
+	tar xfj ../../../$(SOURCE_JSCH);
 
 	find $(SOURCE_TREE) -name eclipse -type f -print | xargs rm -f
 
@@ -366,6 +366,11 @@
 	find . -type f -name "build.xml" -exec \
 		perl -pi -e 's| verbose="true"| verbose="false"|g' \
 		{} ';'
+	
+	# Disable compiler warnings.
+	find . -type f -name "build.xml" -exec \
+		perl -pi -e 's|<javac|<javac nowarn="true"|g' \
+		{} ';'
 
 	# Replace all jars by links to previous install libraries.	
 ifeq ($(with_tomcat),yes)




More information about the pkg-java-commits mailing list