about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-05-13 17:03:59 +0200
committerhexcoder- <heiko@hexco.de>2020-05-13 17:03:59 +0200
commitb6be9060826a8617378e7ec1ee128057b51d8f85 (patch)
tree821decc11988d8a36fde4d2b2d6dbd4c79143474
parent60a5df52623802ccadd0691b812761b3f4a9120e (diff)
downloadafl++-b6be9060826a8617378e7ec1ee128057b51d8f85.tar.gz
GNUmakefile: avoid tabs
-rw-r--r--GNUmakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 390c4cfa..eefba857 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -211,9 +211,9 @@ ifeq "$(shell echo 'int main() { return 0;}' | $(CC) $(CFLAGS) -fsanitize=addres
 endif
 
 ifdef ASAN_BUILD
-	$(info Compiling ASAN version of binaries)
-	CFLAGS+=$(ASAN_CFLAGS)
-	LDFLAGS+=$(ASAN_LDFLAGS)
+        $(info Compiling ASAN version of binaries)
+        CFLAGS+=$(ASAN_CFLAGS)
+        LDFLAGS+=$(ASAN_LDFLAGS)
 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) $(CFLAGS) -x c - -o .test2 2>/dev/null && echo 1 || echo 0 ; rm -f .test2 )" "1"