Lines Matching +full:gen +full:- +full:2
4 Subject: [PATCH] build: Fix generation of lock-obj-pub.native.h for cross
7 * src/gen-lock-obj.sh: Capture echo output with quotes.
9 --
11 Fixes-commit: 99ae862a96a569724f49a604ebb7d3f6d2c2d374
12 Signed-off-by: David Michael <fedora.dm0@gmail.com>
14 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15 ---
16 src/gen-lock-obj.sh | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
19 diff --git a/src/gen-lock-obj.sh b/src/gen-lock-obj.sh
21 --- a/src/gen-lock-obj.sh
22 +++ b/src/gen-lock-obj.sh
23 @@ -38,7 +38,7 @@
24 # AWK=gawk ./gen-lock-obj.sh
27 -if test -n `echo -n`; then
28 +if test -n "`echo -n`"; then
32 --