From: DongHun Kwak Date: Wed, 23 Feb 2022 07:40:55 +0000 (+0900) Subject: Remove abi flags X-Git-Tag: accepted/tizen/7.0/base/20230714.003106^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_7.0_base;p=platform%2Fupstream%2Fpython3.git Remove abi flags Change-Id: I8dbb9ae38ce2a122c262b8362ee9995086da438a --- 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"),