From a9e6e33e851e4865df5c1bf81dedfcae0fd5896e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Mon, 18 Apr 2022 15:03:20 +0200 Subject: [PATCH] Bugfix - wrong variable name (#3694) --- lib/compilation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compilation.sh b/lib/compilation.sh index 05889fefc5..d8728d389d 100644 --- a/lib/compilation.sh +++ b/lib/compilation.sh @@ -577,7 +577,7 @@ CUSTOM_KERNEL_CONFIG # hash_kernel_config CALC_CONFIG=$(git -C $SRC log --format="%H" -1 -- $(realpath --relative-base="$SRC" "${SRC}/config/kernel/${LINUXCONFIG}.config")) [[ -z "$CALC_CONFIG" ]] && CALC_CONFIG="null" - echo "$HASHES" >> "${HASHTARGET}.githash" + echo "$CALC_CONFIG" >> "${HASHTARGET}.githash" }