Skip to content

Commit a543e0c

Browse files
authored
Merge pull request #17129 from JuliaLang/tk/makefilebug
fix makefile bug in LLVM_PATCH from #16823
2 parents 68e1dd4 + fb01c7e commit a543e0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/llvm.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,11 @@ endif # LLVM_VER
406406
LLVM_PATCH_PREV:=
407407
LLVM_PATCH_LIST:=
408408
define LLVM_PATCH
409-
$$(LLVM_SRC_DIR)/$1.patch-applied: $(LLVM_SRC_DIR)/configure | $$(SRCDIR)/patches/$1.patch $(LLVM_PATCH_PREV)
409+
$$(LLVM_SRC_DIR)/$1.patch-applied: $$(LLVM_SRC_DIR)/configure | $$(SRCDIR)/patches/$1.patch $$(LLVM_PATCH_PREV)
410410
cd $$(LLVM_SRC_DIR) && patch -p1 < $$(SRCDIR)/patches/$1.patch
411411
echo 1 > $$@
412412
LLVM_PATCH_PREV := $$(LLVM_SRC_DIR)/$1.patch-applied
413-
LLVM_PATCH_LIST += $(LLVM_PATCH_PREV)
413+
LLVM_PATCH_LIST += $$(LLVM_PATCH_PREV)
414414
endef
415415
ifeq ($(LLVM_VER),3.3)
416416
$(eval $(call LLVM_PATCH,llvm-3.3))

0 commit comments

Comments
 (0)