Skip to content

Commit 4c12570

Browse files
committed
Adapted to new build procedure (hopefully correct -- can't test it!).
1 parent 534ac09 commit 4c12570

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Modules/defmakexp_aix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# for AIX platforms which has to be included in the Modules
1010
# directory of the python source tree.
1111
# It contains all global symbols defined in the following files:
12-
# a) main.o config.o getpath.o
13-
# b) libModules.a libPython.a libObjects.a libParser.a
12+
# a) python.o
13+
# b) ../libpython1.5.a
1414
#
1515
# The script should be run after a new unpack, configure & make
1616
# of the python release, without any options nor changes to
@@ -41,15 +41,15 @@ fi
4141
#
4242
# Variables
4343
#
44+
VERSION=1.5
4445
ROOTDIR=$1
4546
MODSDIR=$ROOTDIR/Modules
4647
PYTHDIR=$ROOTDIR/Python
4748
OBJSDIR=$ROOTDIR/Objects
4849
PARSDIR=$ROOTDIR/Parser
4950

50-
OBJFILES="$MODSDIR/main.o $MODSDIR/config.o $MODSDIR/getpath.o"
51-
LIBFILES="$MODSDIR/libModules.a $OBJSDIR/libObjects.a $PARSDIR/libParser.a"
52-
LIBFILES="$LIBFILES $PYTHDIR/libPython.a"
51+
OBJFILES="$MODSDIR/python.o"
52+
LIBFILES="$ROOTDIR/libpython$(VERSION).a"
5353
ALLFILES="$OBJFILES $LIBFILES"
5454

5555
#

0 commit comments

Comments
 (0)