Remove abi flags 91/271591/1 accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_7.0_base_tool accepted/tizen_7.0_base_tool_hotfix sandbox/backup/python3_3.9.10_20230118 sandbox/backup/python3_3.9.10_20230210 tizen_7.0_base tizen_7.0_base_hotfix accepted/tizen/7.0/base/20230714.003106 accepted/tizen/7.0/base/hotfix/20230714.003916 accepted/tizen/7.0/base/tool/20221028.122000 accepted/tizen/7.0/base/tool/hotfix/20221115.090544 accepted/tizen/base/tool/20220302.074010 accepted/tizen/base/tool/20230128.131309 submit/tizen_7.0_base/20221028.201101 submit/tizen_7.0_base_hotfix/20221115.161601 submit/tizen_base/20220223.230659 submit/tizen_base/20220224.001941 submit/tizen_base/20220224.235902 submit/tizen_base/20220225.000918 submit/tizen_base/20220302.013050 submit/tizen_base/20220302.072438 submit/tizen_base/20230127.090124 tizen_7.0_m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 23 Feb 2022 07:40:55 +0000 (16:40 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Wed, 23 Feb 2022 07:40:55 +0000 (16:40 +0900)
Change-Id: I8dbb9ae38ce2a122c262b8362ee9995086da438a

packaging/macros.python3.py

index f137456..46676d2 100644 (file)
@@ -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"),