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@amazon.com>
Reviewed-by: George Dunlap <george.dunlap@citrix.com>
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"},
}