diff options
author | hexcoder- <heiko@hexco.de> | 2020-02-11 20:23:03 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-02-11 20:23:03 +0100 |
commit | 08ad02d2b0eae397f097e578ad990f13f2a8e373 (patch) | |
tree | d72f61187753e76c241e72eb839803ae93234087 | |
parent | 1b758e4d6b14cc7afdd8c90e80b2afef140d6331 (diff) | |
download | afl++-08ad02d2b0eae397f097e578ad990f13f2a8e373.tar.gz |
forgot to reenable the 2>/dev/null
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 010a6df0..ea991cd3 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,7 @@ ifdef STATIC LDFLAGS += -lm -lrt -lpthread -lz -lutil endif -ifeq "$(shell echo '$(HASH)include <sys/ipc.h>@$(HASH)include <sys/shm.h>@int main() { int _id = shmget(IPC_PRIVATE, 65536, IPC_CREAT | IPC_EXCL | 0600); shmctl(_id, IPC_RMID, 0); return 0;}' | tr @ '\n' | $(CC) -x c - -o .test2 && echo 1 || echo 0 ; rm -f .test2 )" "1" +ifeq "$(shell echo '$(HASH)include <sys/ipc.h>@$(HASH)include <sys/shm.h>@int main() { int _id = shmget(IPC_PRIVATE, 65536, IPC_CREAT | IPC_EXCL | 0600); shmctl(_id, IPC_RMID, 0); return 0;}' | tr @ '\n' | $(CC) -x c - -o .test2 2>/dev/null && echo 1 || echo 0 ; rm -f .test2 )" "1" SHMAT_OK=1 else SHMAT_OK=0 |