diff options
Diffstat (limited to 'Modules/ld_so_aix.in')
-rw-r--r-- | Modules/ld_so_aix.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/ld_so_aix.in b/Modules/ld_so_aix.in index 961532b..add6b3e 100644 --- a/Modules/ld_so_aix.in +++ b/Modules/ld_so_aix.in @@ -12,7 +12,7 @@ # # ARGUMENTS: Same as for "ld". The following arguments are processed # or supplied by this script (those marked with an asterisk -# can be overriden from command line): +# can be overridden from command line): # # Argument Default value # (*) -o [OutputFileName] -o shr.o @@ -85,7 +85,7 @@ if test ! -n "$*"; then fi # Default import file for Python -# Can be overriden by providing a -bI: argument. +# Can be overridden by providing a -bI: argument. impfile="./python.exp" # Parse arguments @@ -156,7 +156,7 @@ if test -z "$expfile"; then fi # Default entry symbol for Python modules = init[modulename] -# Can be overriden by providing a -e argument. +# Can be overridden by providing a -e argument. if test -z "$entry"; then entry=PyInit_`echo $filename | sed "s/module.*//"` fi |