From: Julien Grall <jgrall@xxxxxxxxxx>
The operator + will just concatenate two strings. As the result, the
configure cmdline for "xentools" will look like:
./configure --disable-stubdom
--disable-qemu-traditional--with-system-qemu=/bin/false
--with-system-seabios=/bin/false--disable-ovmf
This can be avoided by explicitely adding the spaces.
Signed-off-by: Julien Grall <jgrall@xxxxxxxxxx>
---
repo.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/repo.go b/repo.go
index 1e7802f8142c..f00b7469101f 100644
--- a/repo.go
+++ b/repo.go
@@ -139,8 +139,8 @@ func MainRepoInit(unused *XSAMeta, args []string) (ret int)
{
G.config.Tool.BuildSequences = map[string]BuildSequence{
"simple": {"./configure", "make -j 8"},
"xen": {"make -j 8 xen"},
- "xentools": {"./configure --disable-stubdom
--disable-qemu-traditional" +
- "--with-system-qemu=/bin/false
--with-system-seabios=/bin/false" +
+ "xentools": {"./configure --disable-stubdom
--disable-qemu-traditional " +
+ "--with-system-qemu=/bin/false
--with-system-seabios=/bin/false " +
"--disable-ovmf",
"make -j 8"},
}