summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Bacircea2020-04-14 11:07:39 +0300
committerAdrian Bacircea2020-04-14 11:07:39 +0300
commitc260eda3f1c4125a740ab09d73787fd6b21515e8 (patch)
treef935df9e0fb681f213ba8cc5390fe185cc0ba74f
parent8103c4d609b578905482638957a97fcd4e4318fd (diff)
downloadaur-c260eda3f1c4125a740ab09d73787fd6b21515e8.tar.gz
Remove unneeded patch
-rw-r--r--0001-Fix-Makefile-to-always-link-libelf-even-if-not-used.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/0001-Fix-Makefile-to-always-link-libelf-even-if-not-used.patch b/0001-Fix-Makefile-to-always-link-libelf-even-if-not-used.patch
deleted file mode 100644
index 745b13b5570f..000000000000
--- a/0001-Fix-Makefile-to-always-link-libelf-even-if-not-used.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From d9571801ee98f1355746865d78bdb30682fcd318 Mon Sep 17 00:00:00 2001
-From: Adrian Bacircea <adrian.b.enthropy@gmail.com>
-Date: Sat, 21 Dec 2019 15:35:13 +0200
-Subject: [PATCH] Fix Makefile to always link libelf even if not used
-
----
- src/Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/Makefile b/src/Makefile
-index 4a558b4..d2a297c 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -24,11 +24,11 @@ CFLAGS ?= -g -O2 -Werror -Wall
- ALL_CFLAGS += $(CFLAGS)
- ALL_LDFLAGS += $(LDFLAGS)
- ifdef NO_PKG_CONFIG
-- ALL_LDFLAGS += -lelf
-+ ALL_LDFLAGS += -Wl,--push-state,--no-as-needed -lelf -Wl,--pop-state
- else
- PKG_CONFIG ?= pkg-config
- ALL_CFLAGS += $(shell $(PKG_CONFIG) --cflags libelf)
-- ALL_LDFLAGS += $(shell $(PKG_CONFIG) --libs libelf)
-+ ALL_LDFLAGS += -Wl,--push-state,--no-as-needed $(shell $(PKG_CONFIG) --libs libelf) -Wl,--pop-state
- endif
-
- OBJDIR ?= .
---
-2.24.1
-