Package: libjarjar-java
Version: 1.1-1panayk1
Severity: important

Resolving dependencies with find, and possibly other tasks, report errors
caused by the above missing flag.

The attached patch solves this problem. The bug has been reported upstream
(http://code.google.com/p/jarjar/issues/detail?id=6) and I have posted the
change in the source code there.



-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- no debconf information
Index: jarjar-1.1/src/main/com/tonicsystems/jarjar/DepFind.java
===================================================================
--- jarjar-1.1.orig/src/main/com/tonicsystems/jarjar/DepFind.java	2011-10-06 09:14:32.000000000 +0300
+++ jarjar-1.1/src/main/com/tonicsystems/jarjar/DepFind.java	2011-10-06 09:14:54.000000000 +0300
@@ -62,7 +62,7 @@
                 try {
                   new ClassReader(in).accept(
                       new DepFindVisitor(classes, entry.getSource(), handler),
-                      ClassReader.SKIP_DEBUG);
+                      ClassReader.SKIP_DEBUG | ClassReader.EXPAND_FRAMES);
                 } catch (Exception e) {
                   System.err.println("Error reading " + entry.getName() + ": " + e.getMessage());
                 } finally {

Reply via email to