#!/bin/bash

TOOLSDIR=$1
OOBUILDDIR=$2

echo "Copying default evolution database into tree"
$GNUCP -af $TOOLSDIR/src/evolocal.odb $OOBUILDDIR/extras/source/database || exit 1;
echo "Copying custom user-dicts into tree"
$GNUCP -af $TOOLSDIR/src/*.dic $OOBUILDDIR/extras/source/wordbook || exit 1;
