diff options
author | Alex Dupre <ale@FreeBSD.org> | 2004-01-29 13:13:31 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2004-01-29 13:13:31 +0000 |
commit | b584366f324bbb31dc65fecf00a6cae4661474e0 (patch) | |
tree | d1cd4711c2e48bb26ceb23d93ada13580c8b479a /benchmarks | |
parent | d9a7590fccf86842e1cba3d444bcff7c3a102481 (diff) | |
download | ports-b584366f324bbb31dc65fecf00a6cae4661474e0.tar.gz ports-b584366f324bbb31dc65fecf00a6cae4661474e0.zip |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/forkbomb/Makefile | 4 | ||||
-rw-r--r-- | benchmarks/forkbomb/files/patch-Makefile | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/benchmarks/forkbomb/Makefile b/benchmarks/forkbomb/Makefile index b784505e5c44..f167ae3136bf 100644 --- a/benchmarks/forkbomb/Makefile +++ b/benchmarks/forkbomb/Makefile @@ -15,6 +15,10 @@ MAINTAINER= hsn@netmag.cz COMMENT= System stress testing tool USE_GETOPT_LONG=yes + +MAKE_ENV+= CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="${LDFLAGS}" + MAN8= forkbomb.8 .include <bsd.port.mk> diff --git a/benchmarks/forkbomb/files/patch-Makefile b/benchmarks/forkbomb/files/patch-Makefile new file mode 100644 index 000000000000..89899088deb3 --- /dev/null +++ b/benchmarks/forkbomb/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Thu Jan 29 14:10:22 2004 ++++ Makefile Thu Jan 29 14:10:51 2004 +@@ -16,7 +16,7 @@ + install -m 444 forkbomb.8 $(DESTDIR)$(PREFIX)/man/man8 + + forkbomb: forkbomb.c Makefile +- ${CC} $(CFLAGS) $(LDFLAGS) -o forkbomb forkbomb.c $(LIBS) ++ ${CC} $(CFLAGS) ${CPPFLAGS} $(LDFLAGS) -o forkbomb forkbomb.c $(LIBS) + + clean: + rm -f *.o forkbomb *~ *core tags |