diff options
| author | Mario Domenech Goulart <mario@ossystems.com.br> | 2014-04-28 09:46:32 -0300 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-04-28 10:30:18 -0300 |
| commit | 02557dd505a58a2a7e357021b1728110731d79ed (patch) | |
| tree | 520128b4473b446236a3d96e8fde5058e969c396 /meta-fsl-arm/scripts/get-maintainer | |
| parent | 9b52b7c8d486d043f34fa30dc65be0db0e764c71 (diff) | |
| download | meta-freescale-02557dd505a58a2a7e357021b1728110731d79ed.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 'meta-fsl-arm/scripts/get-maintainer')
| -rwxr-xr-x | meta-fsl-arm/scripts/get-maintainer | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-fsl-arm/scripts/get-maintainer b/meta-fsl-arm/scripts/get-maintainer index 9d1c0a627..071cdf60f 100755 --- a/meta-fsl-arm/scripts/get-maintainer +++ b/meta-fsl-arm/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 |
