From ef85dfa942eb3124421faff356118bc0c9087cf4 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 29 Jan 2018 11:48:38 +0100 Subject: [PATCH] regen-makefile.sh: Exit with clear error if ttcn3 bin not found Change-Id: I866a758ec472968f368866e3b3b24dc6f14ac7cb --- regen-makefile.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regen-makefile.sh b/regen-makefile.sh index e89b3eeb3..7edd7839a 100755 --- a/regen-makefile.sh +++ b/regen-makefile.sh @@ -10,6 +10,8 @@ # unstable, so far tested with TITAN 6.1.0, 6.2.0 and 6.3.0 # +test -x "$(which ttcn3_makefilegen 2>/dev/null)" || { echo "ERROR: ttcn3_makefilegen not in PATH"; exit 1; } + ttcn3_makefilegen -l -f $* sed -i -e 's/# TTCN3_DIR = /TTCN3_DIR = \/usr/' Makefile sed -i -e 's/LDFLAGS = /LDFLAGS = -L \/usr\/lib\/titan /' Makefile