[pkg-java] r5916 - trunk/eclipse/debian
mkoch at alioth.debian.org
mkoch at alioth.debian.org
Sat Mar 1 13:23:59 UTC 2008
Author: mkoch
Date: 2008-03-01 13:23:58 +0000 (Sat, 01 Mar 2008)
New Revision: 5916
Modified:
trunk/eclipse/debian/changelog
trunk/eclipse/debian/rules
Log:
* Suppress warnings from javac.
Modified: trunk/eclipse/debian/changelog
===================================================================
--- trunk/eclipse/debian/changelog 2008-03-01 13:19:08 UTC (rev 5915)
+++ trunk/eclipse/debian/changelog 2008-03-01 13:23:58 UTC (rev 5916)
@@ -1,8 +1,9 @@
eclipse (3.3.2-1) UNRELEASED; urgency=low
* New upstream version.
+ * Suppress warnings from javac.
- -- Michael Koch <konqueror at gmx.de> Sat, 01 Mar 2008 13:37:05 +0100
+ -- Michael Koch <konqueror at gmx.de> Thu, 14 Feb 2008 16:11:12 +0100
eclipse (3.2.2-5) unstable; urgency=low
Modified: trunk/eclipse/debian/rules
===================================================================
--- trunk/eclipse/debian/rules 2008-03-01 13:19:08 UTC (rev 5915)
+++ trunk/eclipse/debian/rules 2008-03-01 13:23:58 UTC (rev 5916)
@@ -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