mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 01:37:06 +00:00
90135d43d2
Fixed qemu url
10 lines
237 B
Bash
Executable file
10 lines
237 B
Bash
Executable file
#!/bin/bash -ex
|
|
set -e -o pipefail
|
|
|
|
curl http://download.qemu.org/qemu-2.8.1.tar.bz2 | tar xvj
|
|
cd qemu-2.8.1
|
|
|
|
source ctf-tools-venv-activate
|
|
./configure "--prefix=$(dirname $PWD)" "--python=$(which python)"
|
|
make -j $(nproc)
|
|
make install
|