From 39530f9e4c9ca2d66bf152d4d125e44a43c9caef Mon Sep 17 00:00:00 2001 From: Eduardo Souza Date: Wed, 9 Aug 2023 01:15:56 +0000 Subject: [PATCH] Fixing issue that prevented building Julia or running tests with Julia's debug build --- Makefile | 2 +- src/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3e4dbef73bb52..cfa5af6052db9 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ check-whitespace: ifneq ($(NO_GIT), 1) @# Append the directory containing the julia we just built to the end of `PATH`, @# to give us the best chance of being able to run this check. - @PATH="$(PATH):$(dir $(JULIA_EXECUTABLE))" julia $(call cygpath_w,$(JULIAHOME)/contrib/check-whitespace.jl) + @PATH="$(PATH):$(dir $(JULIA_EXECUTABLE))" $(JULIA_EXECUTABLE) $(call cygpath_w,$(JULIAHOME)/contrib/check-whitespace.jl) else $(warn "Skipping whitespace check because git is unavailable") endif diff --git a/src/Makefile b/src/Makefile index ff5f4ce8b99d6..63654f35026e9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -176,7 +176,7 @@ DOBJS := $(SRCS:%=$(BUILDDIR)/%.dbg.obj) ifeq ($(WITH_MMTK), 1) MMTK_SRCS := mmtk_julia MMTK_OBJS := $(MMTK_SRCS:%=$(MMTK_JULIA_INC)/%.o) $(MMTK_LIB_DST) -MMTK_DOBJS := $(MMTK_SRCS:%=$(MMTK_JULIA_INC)/%.dbg.obj) +MMTK_DOBJS := $(MMTK_SRCS:%=$(MMTK_JULIA_INC)/%.dbg.obj) $(MMTK_LIB_DST) else MMTK_OBJS := MMTK_DOBJS :=