diff options
author | Guido van Rossum <guido@python.org> | 1998-03-03 21:47:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-03-03 21:47:00 (GMT) |
commit | 69f65801aba085385625ea7a4a14c6253f680fff (patch) | |
tree | d1401dcf6af0d6158b024ff946757239d3d13901 /Makefile.in | |
parent | 34eefe59f2b4d35f23c14fec5b11c225b4568377 (diff) | |
download | cpython-69f65801aba085385625ea7a4a14c6253f680fff.zip cpython-69f65801aba085385625ea7a4a14c6253f680fff.tar.gz cpython-69f65801aba085385625ea7a4a14c6253f680fff.tar.bz2 |
Misc changes for AIX: install the python.exp file, and properly use $(srcdir).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 9a4d29c..8b2c979 100644 --- a/Makefile.in +++ b/Makefile.in @@ -388,6 +388,21 @@ libainstall: all $(INSTALL_PROGRAM) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup $(INSTALL_PROGRAM) $(srcdir)/install-sh $(LIBPL)/install-sh $(INSTALL_DATA) $(srcdir)/Misc/Makefile.pre.in $(LIBPL)/Makefile.pre.in + @if [ -s Modules/python.exp -a \ + "`echo $(MACHDEP) | cut -c 1-3`" = "aix" ]; then \ + echo; echo "Installing support files for building shared extension modules on AIX:"; \ + $(INSTALL_DATA) Modules/python.exp \ + $(LIBPL)/python.exp; \ + echo; echo "$(LIBPL)/python.exp"; \ + $(INSTALL_PROGRAM) $(srcdir)/Modules/makexp_aix \ + $(LIBPL)/makexp_aix; \ + echo "$(LIBPL)/makexp_aix"; \ + $(INSTALL_PROGRAM) $(srcdir)/Modules/ld_so_aix \ + $(LIBPL)/ld_so_aix; \ + echo "$(LIBPL)/ld_so_aix"; \ + echo; echo "See Misc/AIX-NOTES for details."; \ + else true; \ + fi # Install the dynamically loadable modules # This goes into $(exec_prefix) |