GiellaLT

GiellaLT provides an infrastructure for rule-based language technology aimed at minority and indigenous languages, and streamlines building anything from keyboards to speech technology.

View GiellaLT on GitHub

Page Content

Build problems in $GTHOME/xtdoc/gtuit

Our documentation should be validated before checking in. Do the following

Then run the debugging command:

forrest validate

It will return BUILD SUCCESSFUL or BUILD FAILED.

When encountering problems like this:

BUILD FAILED
/Users/boerre/Documents/forrest/main/targets/validate.xml:135: Could not validate document /Users/boerre/main/xtdoc/gtuit/src/documentation/content/xdocs/doc/lang/sme/build/tmp/plugins-1.xml

it means that the build process in $GTHOME/langs/sme has left garbage that forrest doesn’t like

Clean it up using this command (cut and paste into your terminal window):

cd $GTHOME/langs;
for i in `echo */`;
	do cd $i/doc;
	make clean;
	cd $GTHOME/langs ;
done