[SCM] UNNAMED PROJECT branch, master, updated. 0.37-6-gbe7740f
Niels Thykier
niels at thykier.net
Tue Jan 10 21:43:34 UTC 2012
The following commit has been merged in the master branch:
commit be7740f6742e25c2fecd0821542b19ea066a4604
Author: Niels Thykier <niels at thykier.net>
Date: Tue Jan 10 22:43:04 2012 +0100
propose-cp: Do not hide "javax" results
Signed-off-by: Niels Thykier <niels at thykier.net>
diff --git a/debian/changelog b/debian/changelog
index d2a0d9a..8df37e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,9 @@ javatools (0.38) UNRELEASED; urgency=low
* Fixed a bug where jh_build would generate manifests with lines
longer than some jar implementations would allow. Thanks to
Giovanni Mascellani for the report. (Closes: #653412)
+ * Fixed a bug where java-propose-classpath would "hide" javax imports.
+ Thanks to Jan Janak for the report and the correction.
+ (Closes: #653731)
-- Niels Thykier <niels at thykier.net> Mon, 11 Jul 2011 15:20:40 +0200
diff --git a/java-propose-classpath b/java-propose-classpath
index ec06542..1cda14a 100755
--- a/java-propose-classpath
+++ b/java-propose-classpath
@@ -54,7 +54,7 @@ else
cd "$TEMPDIR"
jar xf "$JAR" >/dev/null
- classes="`find -name '*.class' -exec jcf-dump --print-constants java.lang.Object \{\} \; | grep 'Class name:' | cut -d'"' -f2| sed 's/\[\[*L\(.*\);/\1/;s/$/.class/' |sort -u | grep -v ^java`"
+ classes="`find -name '*.class' -exec jcf-dump --print-constants java.lang.Object \{\} \; | grep 'Class name:' | cut -d'"' -f2| sed 's/\[\[*L\(.*\);/\1/;s/$/.class/' |sort -u | grep -v ^java[/\.]`"
cd "$OLDDIR"
rm -rf "$TEMPDIR"
--
UNNAMED PROJECT
More information about the pkg-java-commits
mailing list