Skip to content

Commit cb1d85e

Browse files
committed
Fix bad command in kernel version check
1 parent 54ff8f4 commit cb1d85e

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ output_*/
44
.DS_store
55
config.log
66
sandbox/
7+
.vs/
78

89
meson-cross.mingw.txt
910
/.vs/slnx.sqlite
19 KB
Binary file not shown.

cross_compile_ffmpeg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ check_missing_packages () {
161161
exit 1
162162
fi
163163
export MINIMUM_KERNEL_VERSION = "4.19.128"
164-
if uname -a | awk -F'[ ]' '{ print $3 }' | awk -F- '{ print $1 }' != $MINIMUM_KERNEL_VERSION then
164+
if uname -a | awk -F'[ ]' '{ print $3 }' | awk -F- '{ print $1 }' != $MINIMUM_KERNEL_VERSION ; then
165165
echo "windows WSL detected: kernel not at minumum version required $MINIMUM_KERNEL_VERSION
166166
please update via windows update then try again"
167167
exit 1

0 commit comments

Comments
 (0)