27 lines
772 B
Diff
27 lines
772 B
Diff
|
From 0bc41194d1f934f94c84fd0a7b835cee6961d824 Mon Sep 17 00:00:00 2001
|
||
|
From: Bogdan Lezhepekov <bogdan.lezhepekov@suse.com>
|
||
|
Date: Thu, 4 Feb 2021 18:02:11 +0200
|
||
|
Subject: [PATCH v1] testing.sh: Use GNU echo instead of builtin
|
||
|
|
||
|
Signed-off-by: Bogdan Lezhepekov <bogdan.lezhepekov@suse.com>
|
||
|
---
|
||
|
testsuite/testing.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/testsuite/testing.sh b/testsuite/testing.sh
|
||
|
index f5b756947..c853f3cfd 100644
|
||
|
--- a/testsuite/testing.sh
|
||
|
+++ b/testsuite/testing.sh
|
||
|
@@ -39,7 +39,7 @@ export SKIP=
|
||
|
# Helper for helpers. Oh my...
|
||
|
|
||
|
test x"$ECHO" != x"" || {
|
||
|
- ECHO="echo"
|
||
|
+ ECHO="/bin/echo"
|
||
|
test x"`echo -ne`" = x"" || {
|
||
|
# Compile and use a replacement 'echo' which understands -e -n
|
||
|
ECHO="$PWD/echo-ne"
|
||
|
--
|
||
|
2.26.2
|
||
|
|