diff --git a/data/locale/helpers/create-locals.h b/data/locale/helpers/create-locals.h index 946b43138..6752aac6c 100755 --- a/data/locale/helpers/create-locals.h +++ b/data/locale/helpers/create-locals.h @@ -27,14 +27,15 @@ cat > locals.h <> locals.h while read id; do - echo $'\t'"LOCALE_$id," >> locals.h; + printf ",\n\tLOCALE_$id" >> locals.h; done cat >> locals.h < locals_intern.h <> locals_intern.h while read id; do - echo $'\t'"\"$id\"," >> locals_intern.h; + printf ",\n\t\"$id\"" >> locals_intern.h done cat >> locals_intern.h <