From b16ee104d89320a1e433aa942d19fd55f99529e9 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 23 Feb 2022 16:40:55 +0900 Subject: [PATCH] Remove abi flags Change-Id: I8dbb9ae38ce2a122c262b8362ee9995086da438a --- packaging/macros.python3.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packaging/macros.python3.py b/packaging/macros.python3.py index f137456..46676d2 100644 --- a/packaging/macros.python3.py +++ b/packaging/macros.python3.py @@ -6,7 +6,6 @@ import sys,os from sysconfig import get_path, get_config_var version = "{}.{}".format(*sys.version_info) -abiflags = get_config_var("ABIFLAGS") macros = { "py3_ver": version, @@ -14,8 +13,7 @@ macros = { "py3_prefix": sys.prefix, # hack-fix for bnc#787526 - get_path can't be used this way in python build dir # "py3_incdir": get_path("include"), - "py3_incdir": "/usr/include/python" + version + abiflags, - "py3_abiflags": abiflags, + "py3_incdir": "/usr/include/python" + version , "py3_soflags": get_config_var("SOABI"), "python3_sitelib": get_path("purelib"), "python3_sitearch": get_path("platlib"), -- 2.7.4