Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c57e4d1

Browse files
committed
Issue #25825: Merge AIX fix from 3.5
2 parents 98cf1e7 + 5401e87 commit c57e4d1

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

Makefile.pre.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1422,10 +1422,10 @@ libainstall: all python-config
14221422
$(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
14231423
$(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
14241424
$(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
1425-
@if [ -s Programs/python.exp -a \
1425+
@if [ -s Modules/python.exp -a \
14261426
"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
14271427
echo; echo "Installing support files for building shared extension modules on AIX:"; \
1428-
$(INSTALL_DATA) Programs/python.exp \
1428+
$(INSTALL_DATA) Modules/python.exp \
14291429
$(DESTDIR)$(LIBPL)/python.exp; \
14301430
echo; echo "$(LIBPL)/python.exp"; \
14311431
$(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
@@ -1638,7 +1638,7 @@ distclean: clobber
16381638
done
16391639
-rm -f core Makefile Makefile.pre config.status \
16401640
Modules/Setup Modules/Setup.local Modules/Setup.config \
1641-
Modules/ld_so_aix Programs/python.exp Misc/python.pc
1641+
Modules/ld_so_aix Modules/python.exp Misc/python.pc
16421642
-rm -f python*-gdb.py
16431643
find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
16441644
-o -name '[@,#]*' -o -name '*.old' \

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ Windows
116116
Build
117117
-----
118118

119+
- Issue #25825: Correct the references to Modules/python.exp, which is
120+
required on AIX. The references were accidentally changed in 3.5.0a1.
121+
119122
- Issue #27453: CPP invocation in configure must use CPPFLAGS. Patch by
120123
Chi Hsuan Yen.
121124

0 commit comments

Comments
 (0)