binpac error

I just installed from source (master) on a fresh pull, and I am unable to run bro deploy. When I do, I receive the following error:

sudo /usr/local/bro/bin/broctl deploy
checking configurations …
bro scripts failed.
/usr/local/bro/bin/bro: error while loading shared libraries: libbinpac.so.0: cannot open shared object file: No such file or directory

ldd confirms that libbinpac.so.0 isn’t linked, though the library installed, and the library is linked in ~/sandbox/zeek/build/src

ldd /usr/local/bro/bin/bro
linux-vdso.so.1 => (0x00007fff093de000)
libbinpac.so.0 => not found
libpcap.so.1 => /opt/pfring/lib/libpcap.so.1 (0x00007f13d7196000)

ldd ~/sandbox/zeek/build/src/bro
linux-vdso.so.1 => (0x00007ffc18dcb000)
libbinpac.so.0 => /home/ejmartin2/sandbox/zeek/build/aux/binpac/lib/libbinpac.so.0 (0x00007f41ba9de000)

lrwxrwxrwx. 1 root root 14 Apr 17 12:47 /usr/local/bro/lib64/libbinpac.so → libbinpac.so.0
lrwxrwxrwx. 1 root root 20 Apr 17 12:47 /usr/local/bro/lib64/libbinpac.so.0 → libbinpac.so.0.51-11
-rwxr-xr-x. 1 root root 96072 Apr 17 12:53 /usr/local/bro/lib64/libbinpac.so.0.51-11

to install, I

• cloned the repository, made sure the submodules were recursively up to date

• cloned PF_RING

• Compiled

• installed

• ./configure —with-pcacp=/opt/pcap

• make

• sudo make install

Can somebody please help me with what I’m doing incorrectly?

Thank you,

Eric Martin, CISSP
Information Security Engineer
Worcester Polytechnic Institute
ejmartin2@wpi.edu
Key fingerprint = C74F 1EBF 2E80 7984 8CB5 064E BF17 D34C C704 B30F
For security purposes, this message has been double ROT13 encoded

Thanks for the report, I just pushed a change that should help you
out, grab it like:

    git pull && git submodule update --recursive --init

Then rebuild/reinstall and let me know if there's still problems.

- Jon