From f7e2c257306b1f9221b45d34f5620d175b5da192 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Mon, 12 Feb 2024 16:02:09 -0300 Subject: build: ensure fnettrace prints to stdout Currently it is the only part of the build that prints to stderr on a normal build, which makes it harder to keep just the warnings and errors in the output: $ ./configure >/dev/null && make clean >/dev/null && make -j "$(nproc)" >/dev/null static ip map: input 5998, output 2490 Added on commit f3774678f ("compress static ip map for fnettrace at compile time", 2023-07-06). --- src/fnettrace/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fnettrace/Makefile b/src/fnettrace/Makefile index 93ce9334d..1c62f43bc 100644 --- a/src/fnettrace/Makefile +++ b/src/fnettrace/Makefile @@ -13,4 +13,4 @@ include $(ROOT)/src/prog.mk all: $(TARGET) static-ip-map static-ip-map: static-ip-map.txt $(PROG) - ./$(PROG) --squash-map=static-ip-map.txt > static-ip-map + ./$(PROG) --squash-map=static-ip-map.txt 2>&1 >static-ip-map -- cgit v1.2.3-54-g00ecf