From 904774b2a9e27233ed1a9b34a9e7bd1cde139c88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Minier?= Date: Wed, 30 Apr 2025 13:41:43 +0200 Subject: [PATCH] Linux deb: Fix config fragment usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a typo testing whether there is a local config fragment. This is nasty in that it won't fail even under `set -e` as it's under an if statement. Signed-off-by: Loïc Minier --- scripts/build-linux-deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-linux-deb.sh b/scripts/build-linux-deb.sh index 89e232f2..b22e6cf4 100755 --- a/scripts/build-linux-deb.sh +++ b/scripts/build-linux-deb.sh @@ -74,7 +74,7 @@ done # the command-line as these might be relative pathnames cd linux -if [ -r kernel/configs/local.config]; then +if [ -r kernel/configs/local.config ]; then make ARCH=arm64 "${CONFIG}" local.config else make ARCH=arm64 "${CONFIG}"