diff --git a/hudson-sflphone-script.sh b/hudson-sflphone-script.sh
index 4aeea77b790e1cf694ad3ff6debb82a121eee54a..49c388581ab5fa1f6f23e5fa59ba8728c4033665 100755
--- a/hudson-sflphone-script.sh
+++ b/hudson-sflphone-script.sh
@@ -8,6 +8,14 @@ XML_RESULTS="cppunitresults.xml"
 
 set -x
 
+# Compile the plugins
+pushd plugins
+make distclean
+./autogen.sh
+./configure --prefix=/usr
+make -j
+popd
+
 # Compile the daemon
 pushd daemon
 make distclean
@@ -22,13 +30,13 @@ popd
 make clean
 make -j
 make doc
+make check
 popd
 
 # Run the unit tests for the daemon
 pushd daemon/test
 # Remove the previous XML test file
 rm -rf $XML_RESULTS
-make check
 ./run_tests.sh || exit 1
 popd
 
@@ -39,6 +47,7 @@ make distclean
 ./configure --prefix=/usr
 make clean
 make -j 1
+make check
 popd
 
 # SUCCESS