diff options
author | van Hauser <vh@thc.org> | 2020-09-06 11:23:59 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-06 11:23:59 +0200 |
commit | bd007c151d88b1ff392e396c4946b98fc95e20fc (patch) | |
tree | 2e11637632f2557474492ddf5e60a67029c71d5d | |
parent | 163e5ffd10936e6e119f643495129ab05fa3e5ec (diff) | |
download | afl++-bd007c151d88b1ff392e396c4946b98fc95e20fc.tar.gz |
fix unicorn clean
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index bcdc10eb..92046ffd 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -523,7 +523,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 |