buildscript: use correct path for template target

This fixes #677

Signed-off-by: Tim Niemeyer <tim.niemeyer@mastersword.de>
This commit is contained in:
Tim Niemeyer 2013-10-04 18:38:39 +02:00
parent 9e5de7389c
commit fb76148c46
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ prebuild() {
for template in $(find $target/files -name *.tpl)
do
echo "Translating $template .."
$tpl_translate $template > $(basename $template .tpl)
$tpl_translate $template > $(dirname $template)/$(basename $template .tpl)
/bin/rm $template
done