mirror of
https://git.yoctoproject.org/meta-security
synced 2026-05-07 04:58:47 +00:00
This adds the ISIC is a suite of utilities to exercise the stability of an IP and its component stacks (TCP/UDP/ICMP etc.) It generates piles of pseudo random packets with configurable tendancies, then sent to the target to penetrate its firewall rules or find bug backported two patches from Redhat. Signed-off-by: Armin Kuster <akuster808@gmail.com>
24 lines
857 B
Diff
24 lines
857 B
Diff
isic: Fixup makefile to support destination
|
|
|
|
Backport:
|
|
http://pkgs.fedoraproject.org/cgit/isic.git/tree/isic-0.07-make.patch
|
|
|
|
Signed-off-by: Armin Kuster <akuser808@gmail.com>
|
|
|
|
Index: isic-0.07/Makefile.in
|
|
===================================================================
|
|
--- isic-0.07.orig/Makefile.in
|
|
+++ isic-0.07/Makefile.in
|
|
@@ -63,7 +63,7 @@ package: distclean
|
|
tar -czvf isic-$(VERSION).tgz ./isic-$(VERSION)/* )
|
|
|
|
install: $(BINS) $(MAN)
|
|
- $(INSTALL) -m 0755 -d $(PREFIX)/bin
|
|
- $(INSTALL) -m 0755 -c $(BINS) $(PREFIX)/bin
|
|
- $(INSTALL) -m 0755 -d $(PREFIX)/man/man1
|
|
- ${INSTALL} -m 0755 -c $(MAN) $(PREFIX)/man/man1
|
|
+ $(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/bin
|
|
+ $(INSTALL) -m 0755 -c $(BINS) $(DESTDIR)$(PREFIX)/bin
|
|
+ $(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/share/man/man1
|
|
+ ${INSTALL} -m 0755 -c $(MAN) $(DESTDIR)$(PREFIX)/share/man/man1
|