diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2021-06-05 17:00:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 17:00:47 +0200 |
commit | 1474e2db23c57e3bdcc930457af876b69510d2ad (patch) | |
tree | 1cb86dc7a41f62e23d49cc3cec2c428e4957638d | |
parent | 0d50ee494751e8dd83e24fd138e396fe940a15c7 (diff) | |
download | afl++-1474e2db23c57e3bdcc930457af876b69510d2ad.tar.gz |
On non-Linux systems make clean may fail for frida_mode
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a45f6d5c..6df7ea1d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -572,7 +572,7 @@ clean: $(MAKE) -C qemu_mode/unsigaction clean $(MAKE) -C qemu_mode/libcompcov clean $(MAKE) -C qemu_mode/libqasan clean - $(MAKE) -C frida_mode clean + -$(MAKE) -C frida_mode clean ifeq "$(IN_REPO)" "1" test -e qemu_mode/qemuafl/Makefile && $(MAKE) -C qemu_mode/qemuafl clean || true test -e unicorn_mode/unicornafl/Makefile && $(MAKE) -C unicorn_mode/unicornafl clean || true |