diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 19:54:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 19:54:25 (GMT) |
commit | 4c125700d1664aa25ad86fb9b88349ab68210be0 (patch) | |
tree | 87de5f0bda7c6117e07ab319dc062406af924f66 /Modules | |
parent | 534ac094f9d63ba1cae95c99fba2c532f8eb31fb (diff) | |
download | cpython-4c125700d1664aa25ad86fb9b88349ab68210be0.zip cpython-4c125700d1664aa25ad86fb9b88349ab68210be0.tar.gz cpython-4c125700d1664aa25ad86fb9b88349ab68210be0.tar.bz2 |
Adapted to new build procedure (hopefully correct -- can't test it!).
Diffstat (limited to 'Modules')
-rwxr-xr-x | Modules/defmakexp_aix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/defmakexp_aix b/Modules/defmakexp_aix index 23895d2..675602c 100755 --- a/Modules/defmakexp_aix +++ b/Modules/defmakexp_aix @@ -9,8 +9,8 @@ # for AIX platforms which has to be included in the Modules # directory of the python source tree. # It contains all global symbols defined in the following files: -# a) main.o config.o getpath.o -# b) libModules.a libPython.a libObjects.a libParser.a +# a) python.o +# b) ../libpython1.5.a # # The script should be run after a new unpack, configure & make # of the python release, without any options nor changes to @@ -41,15 +41,15 @@ fi # # Variables # +VERSION=1.5 ROOTDIR=$1 MODSDIR=$ROOTDIR/Modules PYTHDIR=$ROOTDIR/Python OBJSDIR=$ROOTDIR/Objects PARSDIR=$ROOTDIR/Parser -OBJFILES="$MODSDIR/main.o $MODSDIR/config.o $MODSDIR/getpath.o" -LIBFILES="$MODSDIR/libModules.a $OBJSDIR/libObjects.a $PARSDIR/libParser.a" -LIBFILES="$LIBFILES $PYTHDIR/libPython.a" +OBJFILES="$MODSDIR/python.o" +LIBFILES="$ROOTDIR/libpython$(VERSION).a" ALLFILES="$OBJFILES $LIBFILES" # |