File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2650,7 +2650,7 @@ inclinstall:
26502650 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
26512651 else true; \
26522652 fi
2653- @if test "$(INSTALL_MIMALLOC)" == "yes"; then \
2653+ @if test "$(INSTALL_MIMALLOC)" = "yes"; then \
26542654 if test ! -d $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; then \
26552655 echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc"; \
26562656 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; \
@@ -2671,7 +2671,7 @@ inclinstall:
26712671 echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
26722672 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
26732673 done
2674- @if test "$(INSTALL_MIMALLOC)" == "yes"; then \
2674+ @if test "$(INSTALL_MIMALLOC)" = "yes"; then \
26752675 echo $(INSTALL_DATA) $(srcdir)/Include/internal/mimalloc/mimalloc.h $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc.h; \
26762676 $(INSTALL_DATA) $(srcdir)/Include/internal/mimalloc/mimalloc.h $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc.h; \
26772677 for i in $(srcdir)/Include/internal/mimalloc/mimalloc/*.h; \
Original file line number Diff line number Diff line change 1+ Fix a Makefile bug that prevented mimalloc header files from being installed.
You can’t perform that action at this time.
0 commit comments