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:
2650
2650
$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal; \
2651
2651
else true; \
2652
2652
fi
2653
- @if test "$(INSTALL_MIMALLOC)" == "yes"; then \
2653
+ @if test "$(INSTALL_MIMALLOC)" = "yes"; then \
2654
2654
if test ! -d $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; then \
2655
2655
echo "Creating directory $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc"; \
2656
2656
$(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc; \
@@ -2671,7 +2671,7 @@ inclinstall:
2671
2671
echo $(INSTALL_DATA) $$i $(INCLUDEPY)/internal; \
2672
2672
$(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY)/internal; \
2673
2673
done
2674
- @if test "$(INSTALL_MIMALLOC)" == "yes"; then \
2674
+ @if test "$(INSTALL_MIMALLOC)" = "yes"; then \
2675
2675
echo $(INSTALL_DATA) $(srcdir)/Include/internal/mimalloc/mimalloc.h $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc.h; \
2676
2676
$(INSTALL_DATA) $(srcdir)/Include/internal/mimalloc/mimalloc.h $(DESTDIR)$(INCLUDEPY)/internal/mimalloc/mimalloc.h; \
2677
2677
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