From 5d9af7f3c59ec6e47bfac1483064f25ffbd80e63 Mon Sep 17 00:00:00 2001 From: Dimitri John Ledkov Date: Tue, 27 Oct 2020 20:26:50 +0000 Subject: [PATCH] auto/config: seed ubuntu-desktop when building hyperv image Regression introduced in 38157b37487d244b27af33f7863e6b15253c8f94 when desktop-preinstalled code branch was added, it dropped addint ubuntu-desktop task. Instead it added ubuntu-desktop-raspi task, only for the raspi subarch, which depends on ubuntu-desktop. But the hyperv case, now ended up without ubuntu-desktop task. It looks like introduction of "desktop-preinstalled" assumed, that it is for raspi only, when in fact that code path now started to be used for hyperv gallery image too. --- live-build/auto/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live-build/auto/config b/live-build/auto/config index 22278d55..76c04563 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -601,7 +601,7 @@ case $PROJECT in ;; desktop-preinstalled) - add_task install minimal standard + add_task install minimal standard ubuntu-desktop if [ "$SUBARCH" = "raspi" ]; then add_task install ubuntu-desktop-raspi fi