File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1446,11 +1446,21 @@ inclinstall:
1446
1446
else true; \
1447
1447
fi; \
1448
1448
done
1449
+ @if test ! -d $(DESTDIR)$(INCLUDEPY)/internal; then \
1450
+ echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal"; \
1451
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
1452
+ else true; \
1453
+ fi
1449
1454
@for i in $(srcdir)/Include/*.h; \
1450
1455
do \
1451
1456
echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
1452
1457
$(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
1453
1458
done
1459
+ @for i in $(srcdir)/Include/internal/*.h; \
1460
+ do \
1461
+ echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
1462
+ $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
1463
+ done
1454
1464
$(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
1455
1465
1456
1466
# Install the library and miscellaneous stuff needed for extending/embedding
Original file line number Diff line number Diff line change
1
+ ``make install `` now also installs the internal API:
2
+ ``Include/internal/*.h `` header files.
You can’t perform that action at this time.
0 commit comments