diff options
author | van Hauser <vh@thc.org> | 2020-09-01 11:13:26 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-01 11:13:26 +0200 |
commit | 07cee6b7509fb253b281d895d8754b0a11951bc1 (patch) | |
tree | 5badf515ec2b8610f464e98444b99846011c790c | |
parent | 651ad18e217992a2befbceff1c44dd5d495ab9c2 (diff) | |
download | afl++-07cee6b7509fb253b281d895d8754b0a11951bc1.tar.gz |
fix unicorn clean
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |