From 6226e384512bad86977377b2cece2b5bc0286aa3 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Wed, 18 Dec 2019 11:05:52 +0100 Subject: beautified error log when -m32 is not available on unsigaction --- qemu_mode/unsigaction/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu_mode/unsigaction/Makefile b/qemu_mode/unsigaction/Makefile index 02dc2c79..5e9e2207 100644 --- a/qemu_mode/unsigaction/Makefile +++ b/qemu_mode/unsigaction/Makefile @@ -18,7 +18,7 @@ ifndef AFL_NO_X86 all: lib_i386 lib_amd64 lib_i386: - $(CC) -m32 -fPIC -shared unsigaction.c -o unsigaction32.so || echo "Cannot build unsigation32" + @$(CC) -m32 -fPIC -shared unsigaction.c -o unsigaction32.so 2>/dev/null ; if [ "$$?" = "0" ]; then echo "unsigaction32 build success"; else echo "unsigaction32 build failure (that's fine)"; fi lib_amd64: $(CC) -fPIC -shared unsigaction.c -o unsigaction64.so -- cgit 1.4.1