From 7ef50d7c71d3c904ef5c376d59cd107dbc59e2aa Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Tue, 14 Jul 2020 14:43:40 +0300 Subject: [PATCH] configure.py: Don't install dependencies when building submodules Let's pass the "--nodeps" option to "build_reloc.sh" script of the submodules to avoid the build system running "sudo"... Reported-by: Piotr Sarna Reported-by: Pavel Emelyanov Tested-by: Pavel Emelyanov Message-Id: <20200714114340.440781-1-penberg@scylladb.com> --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 5452b3e6be..46aa71950a 100755 --- a/configure.py +++ b/configure.py @@ -1721,7 +1721,7 @@ with open(buildfile_tmp, 'w') as f: build dist-server: phony dist-server-rpm dist-server-deb rule build-submodule-reloc - command = cd $reloc_dir && ./reloc/build_reloc.sh + command = cd $reloc_dir && ./reloc/build_reloc.sh --nodeps rule build-submodule-rpm command = cd $dir && ./reloc/build_rpm.sh --reloc-pkg $artifact rule build-submodule-deb