20 lines
724 B
Diff
20 lines
724 B
Diff
From 4c8da54c3f59b0e71408b0c980ffb162fc4bb022 Mon Sep 17 00:00:00 2001
|
|
From: Alexandre Frade <kernel@xanmod.org>
|
|
Date: Mon, 24 Apr 2023 04:50:34 +0000
|
|
Subject: XANMOD: scripts/setlocalversion: Move localversion*
|
|
files to the end
|
|
|
|
Signed-off-by: Alexandre Frade <kernel@xanmod.org>
|
|
---
|
|
scripts/setlocalversion | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/scripts/setlocalversion
|
|
+++ b/scripts/setlocalversion
|
|
@@ -208,4 +208,4 @@ elif [ "${LOCALVERSION+set}" != "set" ];
|
|
scm_version="$(scm_version --short)"
|
|
fi
|
|
|
|
-echo "${KERNELVERSION}${file_localversion}${config_localversion}${LOCALVERSION}${scm_version}"
|
|
+echo "${KERNELVERSION}${config_localversion}${LOCALVERSION}${scm_version}${file_localversion}"
|