diff options
author | van Hauser <vh@thc.org> | 2020-09-08 11:48:31 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-08 11:48:31 +0200 |
commit | 13f2ac83a90aa8a6826c8c642a2b64118ac53430 (patch) | |
tree | c567f27c05237ea5e0abf9b34981f2ae899635ed /qemu_mode/build_qemu_support.sh | |
parent | 374e068f97e07831f30b6253157560565240fd52 (diff) | |
download | afl++-13f2ac83a90aa8a6826c8c642a2b64118ac53430.tar.gz |
fix GNUmakefile for new qemuafl
Diffstat (limited to 'qemu_mode/build_qemu_support.sh')
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index 5d9f5be7..342f16b3 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -121,7 +121,7 @@ else CNT=1 while [ '!' -d qemuafl -a "$CNT" -lt 4 ]; do echo "Trying to clone qemuafl (attempt $CNT/3)" - git clone https://github.com/AFLplusplus/qemuafl + git clone --depth 1 https://github.com/AFLplusplus/qemuafl CNT=`expr "$CNT" + 1` done } |