File: fix_path_in_bin.patch

package info (click to toggle)
ruby-ascii85 1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 148 kB
  • ctags: 5
  • sloc: ruby: 292; makefile: 11
file content (19 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Use non local path for ascii85 lib in bin/ascii85
Author: Cédric Boutillier <boutil@debian.org>
Origin: vendor
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710006
Forwarded: no
Last-Update: 2013-05-28
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/bin/ascii85
+++ b/bin/ascii85
@@ -8,7 +8,7 @@
 
 
 require "optparse"
-require File.join(File.dirname(__FILE__), '..', 'lib', 'ascii85')
+require "ascii85"
 
 @options = {
   :wrap   => 80,