[oe-commits] [openembedded-core] 50/59: python3: add = to -L linking option only when the path is absolute

git at git.openembedded.org git at git.openembedded.org
Mon May 30 22:00:22 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 6e4c3cee26d477c865b99c4d741ce3e465dae0a8
Author: Alexander Kanavin <alexander.kanavin at linux.intel.com>
AuthorDate: Thu May 12 16:40:06 2016 +0300

    python3: add = to -L linking option only when the path is absolute
    
    Previously it was added also when the path was relative and not
    prefixed with ./, which was causing issues with building numpy.
    
    Signed-off-by: Alexander Kanavin <alexander.kanavin at linux.intel.com>
---
 meta/recipes-devtools/python/python3/unixccompiler.patch | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/python/python3/unixccompiler.patch b/meta/recipes-devtools/python/python3/unixccompiler.patch
index 7b90f13..3e2b1d1 100644
--- a/meta/recipes-devtools/python/python3/unixccompiler.patch
+++ b/meta/recipes-devtools/python/python3/unixccompiler.patch
@@ -18,9 +18,9 @@ Index: Python-3.3.2/Lib/distutils/unixccompiler.py
  
      def library_dir_option(self, dir):
 -        return "-L" + dir
-+        if dir.startswith("."):
-+            return "-L" + dir
-+        return "-L=" + dir
++        if dir.startswith("/"):
++            return "-L=" + dir
++        return "-L" + dir
  
      def _is_gcc(self, compiler_name):
          return "gcc" in compiler_name or "g++" in compiler_name

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list