Stop using git:// and be nice to people behind proxy servers

The build of tinyipa is doing a: git clone git://...

Doing a git clone git://... behind a proxy server is painful. Use the
'official' QEMU github mirror and clone with https.

Change-Id: Ia14835e6867b945cccb8b1987aa4881d8524561c
Closes-Bug: #1578778
This commit is contained in:
John L. Villalovos 2016-05-05 11:55:50 -07:00
parent 046994a04f
commit 4be5e08408

@ -46,7 +46,7 @@ mkdir "$BUILDDIR"
# Download TGT and Qemu-utils source
git clone https://github.com/fujita/tgt.git $BUILDDIR/tmp/tgt --depth=1 --branch v1.0.62
git clone git://git.qemu-project.org/qemu.git $BUILDDIR/tmp/qemu --depth=1 --branch v2.5.0
git clone https://github.com/qemu/qemu.git $BUILDDIR/tmp/qemu --depth=1 --branch v2.5.0
# Create directory for python local mirror
mkdir -p "$BUILDDIR/tmp/localpip"