diff options
author | van Hauser <vh@thc.org> | 2020-04-23 11:51:32 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-23 11:51:32 +0200 |
commit | 8ada9d06e8551821594bac13aedf6ff2406035ff (patch) | |
tree | 44322d59b5472241744df386718b531249e3e00e | |
parent | cce8c4dbaef89df66d97b1b7e2293ac971143bbd (diff) | |
download | afl++-8ada9d06e8551821594bac13aedf6ff2406035ff.tar.gz |
fix make clean error
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 8a030fd8..e8e81c65 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -426,7 +426,7 @@ clean: $(MAKE) -C src/third_party/libradamsa/ clean rm -rf qemu_mode/qemu-3.1.1 ifeq "$(IN_REPO)" "1" - $(MAKE) -C unicorn_mode/unicornafl clean || true + test -d unicorn_mode/unicornafl && $(MAKE) -C unicorn_mode/unicornafl clean || true else rm -rf qemu_mode/qemu-3.1.1.tar.xz rm -rf unicorn_mode/unicornafl |