diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2022-06-07 19:18:02 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2022-06-09 06:47:58 -1000 |
commit | 92a5fb9138ee0a2a1b9926217647a23d1c1d73b4 (patch) | |
tree | 2febed3500dd3227559e5f33227b33965b72542f /meta/recipes-kernel | |
parent | 48aad396d902b36ece414b0adb9cce4aebb093d7 (diff) | |
download | openembedded-core-contrib-92a5fb9138ee0a2a1b9926217647a23d1c1d73b4.tar.gz |
lttng-modules: fix shell syntax
* add missing space to fix:
/bin/sh: 1: [: Illegal number: 119)
shown in the log.do_compile (isn't fatal for the build)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8f785f35c8a9cdc0107fbaa76b20df5199159ee0)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-modules/0001-fix-random-remove-unused-tracepoints-v5.10-v5.15.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-modules/0001-fix-random-remove-unused-tracepoints-v5.10-v5.15.patch b/meta/recipes-kernel/lttng/lttng-modules/0001-fix-random-remove-unused-tracepoints-v5.10-v5.15.patch index 361a59c2e5c..d27cbc314f3 100644 --- a/meta/recipes-kernel/lttng/lttng-modules/0001-fix-random-remove-unused-tracepoints-v5.10-v5.15.patch +++ b/meta/recipes-kernel/lttng/lttng-modules/0001-fix-random-remove-unused-tracepoints-v5.10-v5.15.patch @@ -35,7 +35,7 @@ index 5478447..31e0ee8 100644 + if [ \( ! \( $(VERSION) -ge 6 \ + -o \( $(VERSION) -eq 5 -a $(PATCHLEVEL) -ge 18 \) \ + -o \( $(VERSION) -eq 5 -a $(PATCHLEVEL) -eq 15 -a $(SUBLEVEL) -ge 44 \) \ -+ -o \( $(VERSION) -eq 5 -a $(PATCHLEVEL) -eq 10 -a $(SUBLEVEL) -ge 119\) \) \) \ ++ -o \( $(VERSION) -eq 5 -a $(PATCHLEVEL) -eq 10 -a $(SUBLEVEL) -ge 119 \) \) \) \ -a \ $(VERSION) -ge 4 \ -o \( $(VERSION) -eq 3 -a $(PATCHLEVEL) -ge 6 \) \ |