Skip to content

Commit 91f985a

Browse files
committed
Fix patch
1 parent ad01e83 commit 91f985a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/patch-ldd.diff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
diff --git a/Makefile.in b/Makefile.in
2-
index 0f25aa2b5..0c2f9dad9 100644
2+
index 0f25aa2b5..937fffa10 100644
33
--- a/Makefile.in
44
+++ b/Makefile.in
55
@@ -416,14 +416,7 @@ endif
@@ -14,7 +14,7 @@ index 0f25aa2b5..0c2f9dad9 100644
1414
-endef
1515
-$(foreach dir, $(DIRS), $(eval $(call xxx_merged_lobj_rule,$(dir))))
1616
-MERGED_LOBJS:=$(foreach dir, $(DIRS),$(BUILD_DIR)/$(dir)_merged.lo)
17-
+MERGED_LOBJS := $(foreach dir,$(DIRS),$($(dir)_OBJS))
17+
+MERGED_LOBJS:=$(foreach dir,$(DIRS),$($(dir)_LOBJS))
1818

1919
$(FLINT_DIR)/$(FLINT_LIB_FULL): $(MERGED_LOBJS)
2020
@echo "Building $(FLINT_LIB_FULL)"
@@ -30,7 +30,7 @@ index 0f25aa2b5..0c2f9dad9 100644
3030
-endef
3131
-$(foreach dir, $(DIRS), $(eval $(call xxx_merged_obj_rule,$(dir))))
3232
-MERGED_OBJS:=$(foreach dir, $(DIRS),$(BUILD_DIR)/$(dir)_merged.o)
33-
+MERGED_OBJS := $(foreach dir,$(DIRS),$($(dir)_OBJS))
33+
+MERGED_OBJS:=$(foreach dir,$(DIRS),$($(dir)_OBJS))
3434

3535
$(FLINT_DIR)/$(FLINT_LIB_STATIC): $(MERGED_OBJS)
3636
@echo "Building $(FLINT_LIB_STATIC)"

0 commit comments

Comments
 (0)