File: 01-use-debian-maven-home.patch

package info (click to toggle)
ruby-maven-libs 3.3.9%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 128 kB
  • sloc: ruby: 40; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Use correct Maven home directory in Debian
Author: Miguel Landaeta <nomadium@debian.org>
Forwarded: no
Last-Update: 2017-03-08

--- ruby-maven-libs-3.3.9+ds.orig/lib/maven.rb
+++ ruby-maven-libs-3.3.9+ds/lib/maven.rb
@@ -16,7 +16,7 @@ module Maven
   def self.home
     @home ||= begin
                 dir = File.dirname( File.expand_path( __FILE__ ) )
-                File.expand_path( "#{dir}/../maven-home" )
+                File.expand_path( "#{dir}/../../../share/maven" )
               end
   end