You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
692 B

  1. From 33593864cd54143db594c4237bba41e14179061c Mon Sep 17 00:00:00 2001
  2. From: David Michael <fedora.dm0@gmail.com>
  3. Date: Fri, 26 Mar 2021 16:06:50 +0900
  4. Subject: [PATCH 1/2] build: Fix generation of lock-obj-pub.native.h for cross
  5. build.
  6. * src/gen-lock-obj.sh: Capture echo output with quotes.
  7. --
  8. Fixes-commit: 99ae862a96a569724f49a604ebb7d3f6d2c2d374
  9. Signed-off-by: David Michael <fedora.dm0@gmail.com>
  10. ---
  11. src/gen-lock-obj.sh | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. --- a/src/gen-lock-obj.sh
  14. +++ b/src/gen-lock-obj.sh
  15. @@ -38,7 +38,7 @@
  16. # AWK=gawk ./gen-lock-obj.sh
  17. #
  18. -if test -n `echo -n`; then
  19. +if test -n "`echo -n`"; then
  20. ECHO_C='\c'
  21. ECHO_N=''
  22. else