summaryrefslogtreecommitdiff
path: root/net-analyzer/hexinject/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-03-27 06:06:27 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-03-27 06:06:27 +0000
commit8d5dbd847cbc704a6a06405856e94b461011afe3 (patch)
tree4d26462d027b14926335894749d2e01d982234d0 /net-analyzer/hexinject/files
parent5bb9ff1ee56d2b5e75e01a7f066d8b0cec84ec02 (diff)
gentoo resync : 27.03.2021
Diffstat (limited to 'net-analyzer/hexinject/files')
-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 *~