From 4261e17b3e9d90fea9495fc046d55976cc9e7647 Mon Sep 17 00:00:00 2001 From: hexcoder- Date: Mon, 31 Aug 2020 22:08:54 +0200 Subject: replace non portable echo -n with printf --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 1ccb2bb0..61f0ca55 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -573,7 +573,7 @@ source-only: all %.8: % @echo .TH $* 8 $(BUILD_DATE) "afl++" > $@ @echo .SH NAME >> $@ - @echo -n ".B $* \- " >> $@ + @printf "%s" ".B $* \- " >> $@ @./$* -h 2>&1 | head -n 1 | sed -e "s/$$(printf '\e')[^m]*m//g" >> $@ @echo >> $@ @echo .SH SYNOPSIS >> $@ -- cgit 1.4.1 From 07cee6b7509fb253b281d895d8754b0a11951bc1 Mon Sep 17 00:00:00 2001 From: van Hauser Date: Tue, 1 Sep 2020 11:13:26 +0200 Subject: fix unicorn clean --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 61f0ca55..e1f6da95 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -530,7 +530,7 @@ clean: $(MAKE) -C qemu_mode/libcompcov clean rm -rf qemu_mode/qemu-3.1.1 ifeq "$(IN_REPO)" "1" - test -d unicorn_mode/unicornafl && $(MAKE) -C unicorn_mode/unicornafl clean || true + test -e unicorn_mode/unicornafl/Makefile && $(MAKE) -C unicorn_mode/unicornafl clean || true else rm -rf qemu_mode/qemu-3.1.1.tar.xz rm -rf unicorn_mode/unicornafl -- cgit 1.4.1