summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-07-29 07:12:07 +0200
committerBen Kohler <bkohler@gentoo.org>2022-07-29 13:12:52 -0500
commit5dc6eab3b1f13997365ee276c86b36abd2aa7b86 (patch)
treede964f0a87d50c7b27ead87f51a53eed530f7077 /dev-libs/newt
parentnet-fs/samba: add tevent detection patch (diff)
downloadgentoo-5dc6eab3b1f13997365ee276c86b36abd2aa7b86.tar.gz
gentoo-5dc6eab3b1f13997365ee276c86b36abd2aa7b86.tar.bz2
gentoo-5dc6eab3b1f13997365ee276c86b36abd2aa7b86.zip
dev-libs/newt: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Portage 3.0.34 / pkgdev 0.2.1 / pkgcheck 0.10.11 Closes: https://github.com/gentoo/gentoo/pull/26642 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'dev-libs/newt')
-rw-r--r--dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch b/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
deleted file mode 100644
index f05075adb371..000000000000
--- a/dev-libs/newt/files/newt-0.52.21-makefile-LDFLAGS-ordering.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 22d44d2cbfcbec216d0028ebdf274247139a8045 Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Wed, 14 Jul 2021 05:12:32 +0100
-Subject: [PATCH] Swap order of LDFLAGS and P*FLAGS
-
-Needed to respect as-needed.
-
-Bug: https://bugs.gentoo.org/798945
----
- Makefile.in | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index 1047efc..f0bc417 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -97,8 +97,8 @@ _snack.$(SOEXT): snack.c $(LIBNEWTSH)
- PLFLAGS=`$$pyconfig --libs`; \
- echo $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snack.o snack.c; \
- $(CC) $(SHCFLAGS) $(CPPFLAGS) $$PIFLAGS $$PCFLAGS -c -o $$ver/snack.o snack.c; \
-- echo $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
-- $(CC) --shared $$PLDFLAGS $$PLFLAGS $(LDFLAGS) -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
-+ echo $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
-+ $(CC) --shared $(LDFLAGS) $$PLDFLAGS $$PLFLAGS -o $$ver/_snack.$(SOEXT) $$ver/snack.o -L. -lnewt $(LIBS); \
- done || :
- touch $@
-
---
-2.32.0
-