@@ -1443,11 +1443,21 @@ inclinstall:
|
1443 | 1443 | else true; \ |
1444 | 1444 | fi; \ |
1445 | 1445 | done |
| 1446 | + @if test ! -d $(DESTDIR)$(INCLUDEPY)/internal; then \ |
| 1447 | + echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal"; \ |
| 1448 | + $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \ |
| 1449 | + else true; \ |
| 1450 | + fi |
1446 | 1451 | @for i in $(srcdir)/Include/*.h; \ |
1447 | 1452 | do \ |
1448 | 1453 | echo $(INSTALL_DATA) $$i $(INCLUDEPY); \ |
1449 | 1454 | $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \ |
1450 | 1455 | done |
| 1456 | + @for i in $(srcdir)/Include/internal/*.h; \ |
| 1457 | + do \ |
| 1458 | + echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \ |
| 1459 | + $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \ |
| 1460 | + done |
1451 | 1461 | $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h |
1452 | 1462 | |
1453 | 1463 | # Install the library and miscellaneous stuff needed for extending/embedding |
|