Commit 64a709da authored by Teng Qin's avatar Teng Qin Committed by GitHub

Merge pull request #2037 from sandip4n/lua-dev

Fix the lua standalone test
parents 4ce0b108 e1e360d2
......@@ -15,7 +15,8 @@ if [[ ! -x bcc-lua ]]; then
exit 0
fi
if ldd bcc-lua | grep -q luajit; then
LIBRARY=$(ldd bcc-lua | grep luajit)
if [ $? -ne 0 -o -z "$LIBRARY" ] ; then
fail "bcc-lua depends on libluajit"
fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment