summaryrefslogtreecommitdiff
blob: b2db6b2a294cfb78a27b17fc562ca1cda5bd59a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Use -r instead of -Wl,-r to fix FTBFS with PIE enabled
Author: Logan Rosen
Forwarded: yes

diff --git a/Makefile.subdirs b/Makefile.subdirs
index 3dc757d..f0ec923 100644
--- a/Makefile.subdirs
+++ b/Makefile.subdirs
@@ -52,7 +52,7 @@ $(BUILD_DIR)/$(MOD_DIR)_%.o: %.c
 	$(QUIET_CC) $(CC) $(CFLAGS) $(INCS) -c $< -o $@ -MMD -MP -MF "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$(BUILD_DIR)/$(MOD_DIR)_$*.d" -MT "$@"
 
 $(MOD_LOBJ): $(LOBJS)
-	$(QUIET_CC) $(CC) $(ABI_FLAG) -Wl,-r $^ -o $@ -nostdlib
+	$(QUIET_CC) $(CC) $(ABI_FLAG) -r $^ -o $@ -nostdlib
 
 -include $(LOBJS:.lo=.d)