~ubuntu-branches/ubuntu/wily/yara/wily-proposed

« back to all changes in this revision

Viewing changes to debian/patches/0001-Added-library-path-so-Python-bindings-are-linked-aga.patch

  • Committer: Package Import Robot
  • Author(s): Hilko Bengen
  • Date: 2015-06-15 00:33:23 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20150615003323-n2wk9f7d65oivy72
Tags: 3.3.0+dfsg-1
* Removed Eriberto from Uploaders at his request
* Imported Upstream version 3.3.0+dfsg
* Added script to edit orig tarball, integrated into debian/watch.
* copyright: Removed notes about files that are no longer included in
  the source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From: Hilko Bengen <bengen@debian.org>
2
 
Date: Fri, 29 Aug 2014 22:12:41 +0200
3
 
Subject: Added library path so Python bindings are linked against the correct
4
 
 library
5
 
 
6
 
---
7
 
 yara-python/setup.py | 1 +
8
 
 1 file changed, 1 insertion(+)
9
 
 
10
 
diff --git a/yara-python/setup.py b/yara-python/setup.py
11
 
index ef2a1b1..a390218 100644
12
 
--- a/yara-python/setup.py
13
 
+++ b/yara-python/setup.py
14
 
@@ -25,4 +25,5 @@ setup(name='yara-python',
15
 
         sources=['yara-python.c'],
16
 
         libraries=['yara'],
17
 
         include_dirs=['../windows/include', '../libyara/include'],
18
 
+        library_dirs=['../libyara/.libs'],
19
 
     )])