Compile error of Hydra code

when I test the code of Hydra, after running:
svn co -r8586 http://gnuradio.org/svn/gnuradio/trunk gnuradio
and add the PATH in .bashrc
In the gnuradio directory,I start run :
./bootstrap && ./configure --prefix=$GR && make && make install

Error occur like below:

if /bin/bash …/…/…/libtool --tag=CXX --mode=compile g++
-DHAVE_CONFIG_H -I. -I. -I…/…/… -DOMNITHREAD_POSIX=1
-I/opt/hydra/gnuradio/omnithread -I/opt/hydra/gnuradio/pmt/src/lib
-I/usr/include -I/opt/hydra/gnuradio/mblock/src/include -g -O2 -Wall
-Woverloaded-virtual -pthread -MT mb_runtime.lo -MD -MP -MF
“.deps/mb_runtime.Tpo” -c -o mb_runtime.lo mb_runtime.cc;
then mv -f “.deps/mb_runtime.Tpo” “.deps/mb_runtime.Plo”; else
rm -f “.deps/mb_runtime.Tpo”; exit 1; fi
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I. -I…/…/…
-DOMNITHREAD_POSIX=1 -I/opt/hydra/gnuradio/omnithread
-I/opt/hydra/gnuradio/pmt/src/lib -I/usr/include
-I/opt/hydra/gnuradio/mblock/src/include -g -O2 -Wall
-Woverloaded-virtual -pthread -MT mb_runtime.lo -MD -MP -MF
.deps/mb_runtime.Tpo -c mb_runtime.cc -fPIC -DPIC -o .libs/mb_runtime.o
In file included from mb_runtime.cc:27:
./mb_runtime_thread_per_block.h:26:26: error: mb_msg_queue.h: No such
file or directory

I think this error is caused by something wrong of libtool, and Did
anybody encounter this situation?

And sometimes the error is as below:

Making all in omnithread
make[2]: Entering directory /opt/hydra/gnuradio/omnithread' if /bin/bash ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I. -I.. -DOMNITHREAD_POSIX=1 -DPthreadDraftVersion=10 -I/opt/hydra/gnuradio/omnithread -g -O2 -Wall -Woverloaded-virtual -pthread -MT posix.lo -MD -MP -MF ".deps/posix.Tpo" -c -o posix.lo posix.cc; \ then mv -f ".deps/posix.Tpo" ".deps/posix.Plo"; else rm -f ".deps/posix.Tpo"; exit 1; fi ../libtool: line 813: X--tag=CXX: command not found ../libtool: line 846: libtool: ignoring unknown tag : command not found ../libtool: line 813: X--mode=compile: command not found ../libtool: line 979: *** Warning: inferring the mode of operation is deprecated.: command not found ../libtool: line 980: *** Future versions of Libtool will require --mode=MODE be specified.: command not found ../libtool: line 1123: Xg++: command not found ../libtool: line 1123: X-DHAVE_CONFIG_H: command not found ../libtool: line 1123: X-I.: command not found ../libtool: line 1123: X-I.: command not found ../libtool: line 1123: X-I..: command not found ../libtool: line 1123: X-DOMNITHREAD_POSIX=1: command not found ../libtool: line 1123: X-DPthreadDraftVersion=10: command not found ../libtool: line 1123: X-I/opt/hydra/gnuradio/omnithread: No such file or directory ../libtool: line 1123: X-g: command not found ../libtool: line 1123: X-O2: command not found ../libtool: line 1123: X-Wall: command not found ../libtool: line 1123: X-Woverloaded-virtual: command not found ../libtool: line 1123: X-pthread: command not found ../libtool: line 1123: X-MT: command not found ../libtool: line 1123: Xposix.lo: command not found ../libtool: line 1123: X-MD: command not found ../libtool: line 1123: X-MP: command not found ../libtool: line 1123: X-MF: command not found ../libtool: line 1123: X.deps/posix.Tpo: No such file or directory ../libtool: line 1123: X-c: command not found ../libtool: line 1174: Xposix.lo: command not found ../libtool: line 1179: libtool: compile: cannot determine name of library object from‘: command not found
make[2]: *** [posix.lo] Error 1
make[2]: Leaving directory /opt/hydra/gnuradio/omnithread' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory/opt/hydra/gnuradio’
make: *** [all] Error 2

Anybody can give some sugestions?