diff options
author | Guido van Rossum <guido@python.org> | 1997-09-03 00:45:30 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-03 00:45:30 +0000 |
commit | 5ade0849020cc241fd6a9af47b7c84746440c1ed (patch) | |
tree | 65ef84a5e2be506595d232be239c6f6ce476e255 | |
parent | 3f0bff666dfd09b1fd80f335362fe7184b4a1135 (diff) | |
download | cpython-git-5ade0849020cc241fd6a9af47b7c84746440c1ed.tar.gz |
Mod suggested by Donn Cave -- invoke makexp_aix relative to $0
so it doesn't have to be on $PATH.
-rwxr-xr-x | Modules/ld_so_aix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix index 7106c0bca8..b9aba4c596 100755 --- a/Modules/ld_so_aix +++ b/Modules/ld_so_aix @@ -69,6 +69,8 @@ if test ! -n "$*"; then echo $usage; exit 2 fi +makexp=`dirname $0`/makexp_aix + # Check for existence of compiler. CC=$1; shift whichcc=`which $CC` @@ -169,8 +171,8 @@ CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -lm -o $objfile" CCARGS="$args" # Export list generation. -#echo makexp_aix $expfile "$objfile" $objs -makexp_aix $expfile "$objfile" $objs +#echo $makexp $expfile "$objfile" $objs +$makexp $expfile "$objfile" $objs # Perform the link. #echo $CC $CCOPT $CCARGS |