about summary refs log tree commit diff
path: root/examples/socket_fuzzing
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-04-17 19:42:03 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-21 13:14:34 +0200
commit0a1979fd2074c4e85d0a8945e18501b970731e0e (patch)
treea37bf884b361fc1ff3046c051b349e58d6b8c916 /examples/socket_fuzzing
parent0dc64b93d81df6ba0e16c2236828f5abd5add30b (diff)
downloadafl++-0a1979fd2074c4e85d0a8945e18501b970731e0e.tar.gz
examples Makefiles: silence errors when there is no 32-bit support installed
Diffstat (limited to 'examples/socket_fuzzing')
-rw-r--r--examples/socket_fuzzing/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/socket_fuzzing/Makefile b/examples/socket_fuzzing/Makefile
index 03146001..9476e2d5 100644
--- a/examples/socket_fuzzing/Makefile
+++ b/examples/socket_fuzzing/Makefile
@@ -47,10 +47,10 @@ M32FLAG=$(___M32FLAG)
 all: socketfuzz32.so socketfuzz64.so
 
 socketfuzz32.so: socketfuzz.c
-	-$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "socketfuzz32 build failure (that's fine)"
+	-@$(CC) $(M32FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "socketfuzz32 build failure (that's fine)"
 
 socketfuzz64.so: socketfuzz.c
-	-$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ || echo "socketfuzz64 build failure (that's fine)"
+	-@$(CC) $(M64FLAG) $(CFLAGS) $^ $(LDFLAGS) -o $@ 2>/dev/null || echo "socketfuzz64 build failure (that's fine)"
 
 install: socketfuzz32.so socketfuzz64.so
 	install -d -m 755 $(DESTDIR)$(HELPER_PATH)/