From cd94246487812747d30c085c65bfee1f75ace456 Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Thu, 11 Mar 2021 14:27:02 +0100 Subject: [PATCH] test/common: remove sed commands in vm_setup.sh Some time ago Qemu submodules links were changed to use https:// instead of git:// so there's no need to sed this. Signed-off-by: Karol Latecki Change-Id: If4b16e7b887af5028d208498da8d81c2fa2101d5 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6847 Tested-by: SPDK CI Jenkins Reviewed-by: Maciej Wawryk Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Reviewed-by: Michal Berger --- test/common/config/pkgdep/git | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/common/config/pkgdep/git b/test/common/config/pkgdep/git index 34be9669b..3626f3441 100644 --- a/test/common/config/pkgdep/git +++ b/test/common/config/pkgdep/git @@ -281,10 +281,6 @@ function _install_qemu() { fi opt_params+=("--extra-cflags=${extra_cflags[*]}") - sed -i s@git://git.qemu.org/@https://github.com/qemu/@g "$GIT_REPOS/qemu/$branch/.gitmodules" - sed -i s@git://git.qemu.org/@https://github.com/qemu/@g "$GIT_REPOS/qemu/$branch/.git/config" - sed -i s@git://git.qemu-project.org/@https://github.com/qemu/@g "$GIT_REPOS/qemu/$branch/.gitmodules" - sed -i s@git://git.qemu-project.org/@https://github.com/qemu/@g "$GIT_REPOS/qemu/$branch/.git/config" # The qemu configure script places several output files in the CWD. (cd "$GIT_REPOS/qemu/$branch" && ./configure "${opt_params[@]}" --target-list="x86_64-softmmu" --enable-kvm --enable-linux-aio --enable-numa)