|
@@ -12,7 +12,7 @@ LF='
|
|
# First check if there is a .git to get the version from git describe
|
|
# First check if there is a .git to get the version from git describe
|
|
# otherwise try to get the version from the kernel makefile
|
|
# otherwise try to get the version from the kernel makefile
|
|
if test -d ../../.git -o -f ../../.git &&
|
|
if test -d ../../.git -o -f ../../.git &&
|
|
- VN=$(git describe --abbrev=4 HEAD 2>/dev/null) &&
|
|
|
|
|
|
+ VN=$(git describe --match 'v[0-9].[0-9]*' --abbrev=4 HEAD 2>/dev/null) &&
|
|
case "$VN" in
|
|
case "$VN" in
|
|
*$LF*) (exit 1) ;;
|
|
*$LF*) (exit 1) ;;
|
|
v[0-9]*)
|
|
v[0-9]*)
|