From 78c1fe83450559092ee7c998ac5c44a5d665e757 Mon Sep 17 00:00:00 2001 From: Bruno Bottazzini Date: Mon, 2 May 2016 14:54:24 -0300 Subject: [PATCH] install.sh: Test if sol-fbp-to-dot was installed with Soletta Signed-off-by: Bruno Bottazzini --- install.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install.sh b/install.sh index 69a8568..377565b 100755 --- a/install.sh +++ b/install.sh @@ -72,6 +72,13 @@ if [ -z "$FBP_RUNNER_PATH" ]; then exit 1 fi +FBP_DOT=$(which sol-fbp-to-dot) +test_dep "sol-fbp-to-dot" 1 +if [ $RETVAL -eq 1 ]; then + echo "Recompile soletta with FBP_TO_DOT support" + exit 1 +fi + test_dep "dot" 0 "graphviz" test_dep "npm" 0 "npm"