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

Skip to content

Commit 5401e87

Browse files
committed
Issue #25825: Fix references to Modules/python.exp
These were incorrectly changed in revision 88a532a31eb3.
1 parent b4a2b36 commit 5401e87

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
@@ -1407,10 +1407,10 @@ libainstall: all python-config
14071407
$(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
14081408
$(INSTALL_SCRIPT) python-config.py $(DESTDIR)$(LIBPL)/python-config.py
14091409
$(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(LDVERSION)-config
1410-
@if [ -s Programs/python.exp -a \
1410+
@if [ -s Modules/python.exp -a \
14111411
"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
14121412
echo; echo "Installing support files for building shared extension modules on AIX:"; \
1413-
$(INSTALL_DATA) Programs/python.exp \
1413+
$(INSTALL_DATA) Modules/python.exp \
14141414
$(DESTDIR)$(LIBPL)/python.exp; \
14151415
echo; echo "$(LIBPL)/python.exp"; \
14161416
$(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
@@ -1620,7 +1620,7 @@ distclean: clobber
16201620
done
16211621
-rm -f core Makefile Makefile.pre config.status \
16221622
Modules/Setup Modules/Setup.local Modules/Setup.config \
1623-
Modules/ld_so_aix Programs/python.exp Misc/python.pc
1623+
Modules/ld_so_aix Modules/python.exp Misc/python.pc
16241624
-rm -f python*-gdb.py
16251625
find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
16261626
-o -name '[@,#]*' -o -name '*.old' \

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,9 @@ Windows
154154
Build
155155
-----
156156

157+
- Issue #25825: Correct the references to Modules/python.exp, which is
158+
required on AIX. The references were accidentally changed in 3.5.0a1.
159+
157160
- Issue #27453: CPP invocation in configure must use CPPFLAGS. Patch by
158161
Chi Hsuan Yen.
159162

0 commit comments

Comments
 (0)