~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/patches/jikes_compile_1.patch

Tags: 1.1.4-2
* Put call to dh_installdeb after call to dh_python.  Fixes purge
  of python2.3-subversion (closes: #308777) 
* Disable full testsuite.  All archs have already past it.  No need to
  burden the autobuilders with all the tests.
* Set DEB_BUILDDIR correctly since something is apparently setting it
  incorrectly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--- subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Notify.java.orig   2004-06-12 13:01:25.000000000 +0000
 
2
+++ subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Notify.java        2005-04-06 07:28:09.000000000 +0000
 
3
@@ -56,7 +56,7 @@
 
4
          */
 
5
                public static final String getActionName(int action)
 
6
                {
 
7
-                       return actionNames[action];
 
8
+                       return NotifyAction.actionNames[action];
 
9
                }
 
10
 
 
11
     }
 
12
@@ -73,7 +73,7 @@
 
13
          */
 
14
                public static final String getStatusName(int status)
 
15
                {
 
16
-                       return statusNames[status];
 
17
+                       return NotifyStatus.statusNames[status];
 
18
                }
 
19
     }
 
20
 
 
21