All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix for YB6467
@ 2014-06-30  9:44 Roxana
  2014-06-30  9:44 ` [PATCH 1/1] python3: fix builtins imports Roxana
  0 siblings, 1 reply; 2+ messages in thread
From: Roxana @ 2014-06-30  9:44 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 6b5484d17df275b706a2b3c06bf7988da5818000:

  Revert "libusb: add missing build dependency on udev" (2014-06-29 10:00:44 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib roxana/YB6467
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=roxana/YB6467

Roxana (1):
  python3: fix builtins imports

 meta/recipes-devtools/python/python3/unixccompiler.patch | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

-- 
1.9.1



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] python3: fix builtins imports
  2014-06-30  9:44 [PATCH 0/1] Fix for YB6467 Roxana
@ 2014-06-30  9:44 ` Roxana
  0 siblings, 0 replies; 2+ messages in thread
From: Roxana @ 2014-06-30  9:44 UTC (permalink / raw)
  To: openembedded-core

On some Linux distros the current working directory
is not added to the linker's path.
Issue reproduced on Ubuntu 14.04 LTS.

Fix for [YOCTO #6467].

Signed-off-by: Roxana <roxana.ciobanu@intel.com>
---
 meta/recipes-devtools/python/python3/unixccompiler.patch | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-devtools/python/python3/unixccompiler.patch b/meta/recipes-devtools/python/python3/unixccompiler.patch
index b2229b4..7b90f13 100644
--- a/meta/recipes-devtools/python/python3/unixccompiler.patch
+++ b/meta/recipes-devtools/python/python3/unixccompiler.patch
@@ -13,11 +13,13 @@ Index: Python-3.3.2/Lib/distutils/unixccompiler.py
 ===================================================================
 --- Python-3.3.2.orig/Lib/distutils/unixccompiler.py	2013-05-15 09:32:54.000000000 -0700
 +++ Python-3.3.2/Lib/distutils/unixccompiler.py	2013-08-01 00:58:18.629056286 -0700
-@@ -202,7 +202,7 @@
+@@ -202,7 +202,9 @@
      # ccompiler.py.
  
      def library_dir_option(self, dir):
 -        return "-L" + dir
++        if dir.startswith("."):
++            return "-L" + dir
 +        return "-L=" + dir
  
      def _is_gcc(self, compiler_name):
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-06-30  9:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-30  9:44 [PATCH 0/1] Fix for YB6467 Roxana
2014-06-30  9:44 ` [PATCH 1/1] python3: fix builtins imports Roxana

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.