File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -2581,6 +2581,11 @@ inclinstall:
2581
2581
$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
2582
2582
else true; \
2583
2583
fi
2584
+ @if test ! -d $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; then \
2585
+ echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc"; \
2586
+ $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; \
2587
+ else true; \
2588
+ fi
2584
2589
@for i in $(srcdir)/Include/*.h; \
2585
2590
do \
2586
2591
echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
@@ -2596,6 +2601,12 @@ inclinstall:
2596
2601
echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
2597
2602
$(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
2598
2603
done
2604
+ $(INSTALL_DATA) $(srcdir)/Include/internal/mimalloc/mimalloc.h $(DESTDIR)$(INCLUDEPY)/internal/mimalloc
2605
+ @for i in $(srcdir)/Include/internal/mimalloc/mimalloc/*.h; \
2606
+ do \
2607
+ echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal/mimalloc/mimalloc; \
2608
+ $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; \
2609
+ done
2599
2610
$(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
2600
2611
2601
2612
# Install the library and miscellaneous stuff needed for extending/embedding
You can’t perform that action at this time.
0 commit comments