OpenEmbedded Guile 1.8.5. Depends

Hi, I'm not sure if this is the right place to post this:

attempting to compile guile (beagleboard-demo-image depends on this),
will fail if libtool is not already compiled:

from OE do_configure log:

<snip>

checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for lt_dlinit in -lltdl... no
configure: error: libltdl not found. See README.
FATAL: oe_runconf failed

<snip>

If one manually compiles libtool (bitbake libtool), then runs "bitbake
guile", it compiles fine.

I think the only change needed would be to modify the DEPENDS section
of guile-native_1.8.5.bb from:

DEPENDS = "gmp-native"

to something like

DEPENDS = "gmp-native libtool" ?

Thanks