summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMario Domenech Goulart <mario@ossystems.com.br>2014-04-28 09:46:32 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2014-04-28 10:30:18 -0300
commitd39d19598380ebe10511ba32d1af6a49c887bbb0 (patch)
treeed3544886661604bef0a0edc50825a79281d08d4 /scripts
parent0cfcebe34026e0f7239d2b57b13fbf116c0dfa19 (diff)
downloadmeta-fsl-arm-d39d19598380ebe10511ba32d1af6a49c887bbb0.tar.gz
scripts/get-maintainer: use printf instead of "echo -e"
Dash doesn't treat -e as a command line switch for echo. Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get-maintainer4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get-maintainer b/scripts/get-maintainer
index 9d1c0a6..071cdf6 100755
--- a/scripts/get-maintainer
+++ b/scripts/get-maintainer
@@ -73,9 +73,9 @@ for m in $machines; do
73 73
74 if [ -n "$dump_mode" ]; then 74 if [ -n "$dump_mode" ]; then
75 if [ -n "$maint" ]; then 75 if [ -n "$maint" ]; then
76 echo -e "${machine}\t${name}\t${maint}" >> $maintained 76 printf "${machine}\t${name}\t${maint}\n" >> $maintained
77 else 77 else
78 echo -e "${machine}\t${name}" >> $orphan 78 printf "${machine}\t${name}\n" >> $orphan
79 fi 79 fi
80 else 80 else
81 if [ -n "$maint" ]; then 81 if [ -n "$maint" ]; then