summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-03-26 17:08:15 +0100
committerConrad Kostecki <conikost@gentoo.org>2021-03-26 19:32:08 +0100
commitaf8e8903dc3adcfba60d7cb126cdb2c23610c959 (patch)
treeb0e9bb642ec29c902fd890a20615f0cc7fe6b71c /net-analyzer/hexinject
parentnet-libs/pjproject: remove unused patches (diff)
downloadgentoo-af8e8903dc3adcfba60d7cb126cdb2c23610c959.tar.gz
gentoo-af8e8903dc3adcfba60d7cb126cdb2c23610c959.tar.bz2
gentoo-af8e8903dc3adcfba60d7cb126cdb2c23610c959.zip
net-analyzer/hexinject: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/20130 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-analyzer/hexinject')
-rw-r--r--net-analyzer/hexinject/files/hexinject-1.5-fix-build-system.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/net-analyzer/hexinject/files/hexinject-1.5-fix-build-system.patch b/net-analyzer/hexinject/files/hexinject-1.5-fix-build-system.patch
deleted file mode 100644
index 046d083710df..000000000000
--- a/net-analyzer/hexinject/files/hexinject-1.5-fix-build-system.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Respect user flags
-
---- a/Makefile
-+++ b/Makefile
-@@ -1,7 +1,7 @@
- all:
-- gcc -o hexinject hexinject.c -lpcap
-- gcc -o prettypacket prettypacket.c
-- gcc -o hex2raw hex2raw.c
-+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o hexinject hexinject.c -lpcap
-+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o prettypacket prettypacket.c
-+ $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -o hex2raw hex2raw.c
-
- clean:
- rm -f hexinject prettypacket hex2raw *~