File: 0001-remove-rpath.patch

package info (click to toggle)
python-getdns 1.0.0~b1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: ansic: 3,538; python: 607; makefile: 130
file content (29 lines) | stat: -rw-r--r-- 1,018 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 7257d3f8786a5a9706a3afd287f503daf6a9439c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=3D=3Futf-8=3Fq=3FOnd=3DC5=3D99ej=5FSur=3DC3=3DBD=3F=3D?=
 <ondrej@debian.org>
Date: Sun, 1 Mar 2015 10:38:43 +0100
Subject: remove-rpath

Patch-Name: 0001-remove-rpath.patch
---
 setup.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/setup.py b/setup.py
index a2fde41..d55edfb 100644
--- a/setup.py
+++ b/setup.py
@@ -56,13 +56,10 @@ if not ((platform_version[0] == '3') or (platform_version == ['2', '7'])):
     os._exit(1)
 
 getdns_module = Extension('getdns',
-                    include_dirs = [ '/usr/local/include', ],
                     libraries = [ 'getdns' ],
-                    library_dirs = library_dirs,
                     sources = [ 'getdns.c', 'pygetdns_util.c', 'context.c',
                                 'context_util.c', 'result.c' ],
                     extra_compile_args = CFLAGS,
-                    runtime_library_dirs = library_dirs,
                     )
 
 setup(name='getdns',