From: Antoine Pitrou Date: Fri, 10 Sep 2010 22:22:58 +0000 (+0000) Subject: Small fix to ld_so_aix.in for 2.x X-Git-Tag: v2.7.1rc1~311 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=588bd847fb538397ad9239e624e832b53e0b0988;p=python Small fix to ld_so_aix.in for 2.x --- diff --git a/Modules/ld_so_aix.in b/Modules/ld_so_aix.in index 0fd245b062..39251d2cf5 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"