From 1c7d6584a7811b7785ae5c1e378f14b5ba0971cf Mon Sep 17 00:00:00 2001 From: takeshi_hoshina Date: Mon, 2 Nov 2020 11:07:33 +0900 Subject: basesystem-jj recipes --- .../10-distutils-fix-swig-parameter.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 external/meta-python2/recipes-devtools/python/python-native/10-distutils-fix-swig-parameter.patch (limited to 'external/meta-python2/recipes-devtools/python/python-native/10-distutils-fix-swig-parameter.patch') diff --git a/external/meta-python2/recipes-devtools/python/python-native/10-distutils-fix-swig-parameter.patch b/external/meta-python2/recipes-devtools/python/python-native/10-distutils-fix-swig-parameter.patch new file mode 100644 index 00000000..a39247ce --- /dev/null +++ b/external/meta-python2/recipes-devtools/python/python-native/10-distutils-fix-swig-parameter.patch @@ -0,0 +1,18 @@ +Upstream-Status: Pending + +# Some versions of SWIG do not use the extension parameter. +# Make it optional. +# Signed-Off: Michael 'Mickey' Lauer +Index: Python-2.6.1/Lib/distutils/command/build_ext.py +=================================================================== +--- Python-2.6.1.orig/Lib/distutils/command/build_ext.py ++++ Python-2.6.1/Lib/distutils/command/build_ext.py +@@ -566,7 +566,7 @@ class build_ext (Command): + target_lang=language) + + +- def swig_sources (self, sources, extension): ++ def swig_sources (self, sources, extension=None): + + """Walk the list of source files in 'sources', looking for SWIG + interface (.i) files. Run SWIG on all that are found, and -- cgit 1.2.3-korg