From 588bd847fb538397ad9239e624e832b53e0b0988 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Fri, 10 Sep 2010 22:22:58 +0000 Subject: [PATCH] Small fix to ld_so_aix.in for 2.x --- Modules/ld_so_aix.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/ld_so_aix.in b/Modules/ld_so_aix.in index 0fd245b06229..39251d2cf527 100644 --- a/Modules/ld_so_aix.in +++ b/Modules/ld_so_aix.in @@ -158,7 +158,7 @@ fi # Default entry symbol for Python modules = init[modulename] # Can be overriden by providing a -e argument. if test -z "$entry"; then - entry=PyInit_`echo $filename | sed "s/module.*//"` + entry=init`echo $filename | sed "s/module.*//"` fi #echo "ld_so_aix: Debug info section" -- 2.47.3