aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-12 16:02:09 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2024-02-12 16:16:50 -0300
commitf7e2c257306b1f9221b45d34f5620d175b5da192 (patch)
treed4bc43712f12fc9d79156b252da5837f22a2f014 /src
parentdocs: remove extraneous .PP in man page (diff)
downloadfirejail-f7e2c257306b1f9221b45d34f5620d175b5da192.tar.gz
firejail-f7e2c257306b1f9221b45d34f5620d175b5da192.tar.zst
firejail-f7e2c257306b1f9221b45d34f5620d175b5da192.zip
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).
Diffstat (limited to 'src')
-rw-r--r--src/fnettrace/Makefile2
1 files changed, 1 insertions, 1 deletions
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
13 13
14all: $(TARGET) static-ip-map 14all: $(TARGET) static-ip-map
15static-ip-map: static-ip-map.txt $(PROG) 15static-ip-map: static-ip-map.txt $(PROG)
16 ./$(PROG) --squash-map=static-ip-map.txt > static-ip-map 16 ./$(PROG) --squash-map=static-ip-map.txt 2>&1 >static-ip-map