From 77db32f0fba1e0a8c1d804700f08ea0a2f4c2b38 Mon Sep 17 00:00:00 2001 From: Roland Clobus Date: Mon, 1 Jan 2024 11:43:53 +0100 Subject: [PATCH] Installer: fix for previous commit A tab symbol in the vmlinuz-detection patch was missing --- scripts/build/installer_debian-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index a7ba210cb..c3c13b233 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -293,7 +293,7 @@ find -maxdepth 1 -name *.deb | xargs apt-get --yes install # For older kernels, modify the Makefile to use an existing vmlinuz, if present # The patch only matches when debian-installer!43 (https://salsa.debian.org/installer-team/debian-installer/-/merge_requests/43) is not merged yet sed -i -e '/^\\tVMLINUXZ=/s|VMLINUXZ=|if [ ! -e \$(TREE)/boot/vmlinuz ]; then \\\\\\n\\tVMLINUXZ=|' build/Makefile -sed -i -e '/^\\tmv -v \$\$VMLINUXZ/s|; \\\\|; \\\\\\n\\tfi \\\\|' build/Makefile +sed -i -e '/^\\t\\tmv -v \$\$VMLINUXZ/s|; \\\\|; \\\\\\n\\tfi \\\\|' build/Makefile # Build the installer cd build