From 8c5504bffac2ef1ff2f240695dfefacded7e48e5 Mon Sep 17 00:00:00 2001 From: James Westby Date: Fri, 12 Sep 2008 14:59:31 +0100 Subject: [PATCH] Don't assume /bin/sh supports echo -e backends/test/helpers/search-name.sh is uses echo -e to return tab-separated values to the caller, but declares itself #!/bin/sh. If /bin/sh is dash then the caller receives "-e package\t...", which is invalid. --- backends/test/helpers/search-name.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/test/helpers/search-name.sh b/backends/test/helpers/search-name.sh index 58ace8419..271751de2 100755 --- a/backends/test/helpers/search-name.sh +++ b/backends/test/helpers/search-name.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright (C) 2007 Richard Hughes #