diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch b/meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch index c4262985ba..12216ce46a 100644 --- a/meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch +++ b/meta-python/recipes-devtools/python/python3-m2crypto/0001-setup.py-Make-the-cmd-available.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From eaeb95ec64762a58dde7cf368fc17188382e7df6 Mon Sep 17 00:00:00 2001 | 1 | From 6262f49de177a79bc17f8d583aa5a7acaf48bf9c Mon Sep 17 00:00:00 2001 |
| 2 | From: Mingli Yu <mingli.yu@windriver.com> | 2 | From: Mingli Yu <mingli.yu@windriver.com> |
| 3 | Date: Fri, 28 Mar 2025 12:13:26 +0800 | 3 | Date: Fri, 28 Mar 2025 12:13:26 +0800 |
| 4 | Subject: [PATCH] setup.py: Make the cmd available | 4 | Subject: [PATCH] setup.py: Make the cmd available |
| @@ -19,19 +19,26 @@ Upstream-Status: Inappropriate [oe specific] | |||
| 19 | 19 | ||
| 20 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> | 20 | Signed-off-by: Mingli Yu <mingli.yu@windriver.com> |
| 21 | --- | 21 | --- |
| 22 | setup.py | 2 +- | 22 | setup.py | 6 ++++-- |
| 23 | 1 file changed, 1 insertion(+), 1 deletion(-) | 23 | 1 file changed, 4 insertions(+), 2 deletions(-) |
| 24 | 24 | ||
| 25 | diff --git a/setup.py b/setup.py | 25 | diff --git a/setup.py b/setup.py |
| 26 | index 9938e67..21e2346 100644 | 26 | index 792d7365b6ed..5b8a5d791793 100644 |
| 27 | --- a/setup.py | 27 | --- a/setup.py |
| 28 | +++ b/setup.py | 28 | +++ b/setup.py |
| 29 | @@ -230,7 +230,7 @@ class _M2CryptoBuildExt(build_ext.build_ext): | 29 | @@ -208,8 +208,10 @@ class _M2CryptoBuildExt(build_ext.build_ext): |
| 30 | with open( | 30 | if sys.platform != "win32": |
| 31 | "src/SWIG/x509_v_flag.h", "w", encoding="utf-8" | 31 | # generate src/SWIG/x509_v_flag.h to overcome weaknesses of swig |
| 32 | ) as x509_v_h: | 32 | # https://todo.sr.ht/~mcepl/m2crypto/298 |
| 33 | - cmd = [shutil.which(os.environ.get('CC', 'gcc'))] | 33 | - with open("src/SWIG/x509_v_flag.h", "w", encoding="utf-8") as x509_v_h: |
| 34 | - cmd = [shutil.which(os.environ.get("CC", "gcc"))] | ||
| 35 | + with open( | ||
| 36 | + "src/SWIG/x509_v_flag.h", "w", encoding="utf-8" | ||
| 37 | + ) as x509_v_h: | ||
| 34 | + cmd = os.environ.get('CC', 'gcc').split() | 38 | + cmd = os.environ.get('CC', 'gcc').split() |
| 35 | cflags = os.environ.get("CFLAGS") | 39 | cflags = os.environ.get("CFLAGS") |
| 36 | if cflags is not None: | 40 | if cflags is not None: |
| 37 | cmd += cflags.split() | 41 | cmd += cflags.split() |
| 42 | -- | ||
| 43 | 2.34.1 | ||
| 44 | |||
