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).
This commit is contained in:
Kelvin M. Klann 2024-02-12 16:02:09 -03:00
parent 5d3b61de89
commit f7e2c25730

View file

@ -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