about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2019-08-09 00:34:26 +0200
committervan Hauser <vh@thc.org>2019-08-09 00:34:26 +0200
commit41d2e7d6b6ac1bab20f73e1e023c8450bbfc657e (patch)
treeb4f0670fe450d32be87cdc94ed2d6dee0f097010 /Makefile
parent73d02f3a808903f02dd0b547e7db9ff00efdf6c5 (diff)
downloadafl++-41d2e7d6b6ac1bab20f73e1e023c8450bbfc657e.tar.gz
minor corrections
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c5d7fb2..e6e3af85 100644
--- a/Makefile
+++ b/Makefile
@@ -161,7 +161,7 @@ test_build: afl-gcc afl-as afl-showmap
 	./afl-showmap -m none -q -o .test-instr0 ./test-instr < /dev/null
 	echo 1 | ./afl-showmap -m none -q -o .test-instr1 ./test-instr
 	@rm -f test-instr
-	@cmp -s .test-instr0 .test-instr1; DR="$$?"; rm -f .test-instr0 .test-instr1; if [ "$$DR" = "0" ]; then echo; echo "Oops, the instrumentation does not seem to be behaving correctly!"; echo; echo "Please ping <lcamtuf@google.com> to troubleshoot the issue."; echo; exit 1; fi
+	@cmp -s .test-instr0 .test-instr1; DR="$$?"; rm -f .test-instr0 .test-instr1; if [ "$$DR" = "0" ]; then echo; echo "Oops, the instrumentation does not seem to be behaving correctly!"; echo; echo "Please post to https://github.com/vanhauser-thc/AFLplusplus/issues to troubleshoot the issue."; echo; exit 1; fi
 	@echo "[+] All right, the instrumentation seems to be working!"
 
 else