Skip to content

Commit fb01c7e

Browse files
authored
fix makefile bug in LLVM_PATCH from #16823
was resulting in the last patch file not getting applied, my bad - needed doubled `$` so the variable expansion happens after the LLVM_PATCH macro gets expanded, not at its definition (makefiles should not be written by humans)
1 parent d19e6f7 commit fb01c7e

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)