Updated build script to compile plugin itself.

This commit is contained in:
richard 2009-11-19 06:49:19 +01:00
parent c60195db5c
commit 5f85693d51
1 changed files with 6 additions and 1 deletions

View File

@ -55,10 +55,15 @@ fi
mkdir -p $RELEASEDIR
# Clean and compile plugin.
make clean
make
# Check if the plugin is built.
if [ ! -e $BUILDDIR/$PLUGINFILE ]
then
echo "Cannot build release package, plugin is not built. Missing file '$BUILDDIR/$PLUGINFILE'."
echo "Cannot build release package, plugin build failed. Missing file '$BUILDDIR/$PLUGINFILE'."
exit 1
fi