diff options
author | wiz <wiz@pkgsrc.org> | 2014-05-09 09:11:26 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-05-09 09:11:26 +0000 |
commit | 896aa37668947f3abd1d6dadb7725f4bf3e98693 (patch) | |
tree | 8663622acf4c5f65a433b698434fd66fb2b6092c /lang/python34 | |
parent | 3b8413b8957ad2d30be1742412f3644d4839a495 (diff) | |
download | pkgsrc-896aa37668947f3abd1d6dadb7725f4bf3e98693.tar.gz |
Remove noop patch.
Diffstat (limited to 'lang/python34')
-rw-r--r-- | lang/python34/patches/patch-ab | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/lang/python34/patches/patch-ab b/lang/python34/patches/patch-ab deleted file mode 100644 index dd5d630945e..00000000000 --- a/lang/python34/patches/patch-ab +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2014/05/09 02:27:14 wen Exp $ - ---- Lib/distutils/command/build_ext.py.orig 2012-02-23 20:22:44.000000000 +0000 -+++ Lib/distutils/command/build_ext.py -@@ -523,8 +523,19 @@ class build_ext(Command): - # that go into the mix. - if ext.extra_objects: - objects.extend(ext.extra_objects) -+ -+ # Two possible sources for extra linker arguments: -+ # - 'extra_link_args' in Extension object -+ # - LDFLAGS environment variable -+ # The environment variable should take precedence, and -+ # any sensible compiler will give precedence to later -+ # command line args. Hence we combine them in order: - extra_args = ext.extra_link_args or [] - -+ # if os.environ.get('LDFLAGS'): -+ # extra_args = list(extra_args) -+ # extra_args.extend(string.split(os.environ['LDFLAGS'])) -+ - # Detect target language, if not provided - language = ext.language or self.compiler.detect_language(sources) - |