Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d61b9fd authored by Michal Marek's avatar Michal Marek
Browse files

perf: Use make kernelversion instead of parsing the Makefile



Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent bfe5424a
Loading
Loading
Loading
Loading
+1 −6
Original line number Original line Diff line number Diff line
@@ -23,12 +23,7 @@ if test -d ../../.git -o -f ../../.git &&
then
then
	VN=$(echo "$VN" | sed -e 's/-/./g');
	VN=$(echo "$VN" | sed -e 's/-/./g');
else
else
	eval $(grep '^VERSION[[:space:]]*=' ../../Makefile|tr -d ' ')
	VN=$(make -sC ../.. kernelversion)
	eval $(grep '^PATCHLEVEL[[:space:]]*=' ../../Makefile|tr -d ' ')
	eval $(grep '^SUBLEVEL[[:space:]]*=' ../../Makefile|tr -d ' ')
	eval $(grep '^EXTRAVERSION[[:space:]]*=' ../../Makefile|tr -d ' ')

	VN="${VERSION}.${PATCHLEVEL}.${SUBLEVEL}${EXTRAVERSION}"
fi
fi


VN=$(expr "$VN" : v*'\(.*\)')
VN=$(expr "$VN" : v*'\(.*\)')