Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tools/extras/install_sequitur.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ else
fi
fi

command -v swig >/dev/null 2>&1 || {
echo >&2 "$0: Error: I require swig but it's not installed.";
echo >&2 " Please install swig and run this script again. "
exit 1;
}

if [ -d ./g2p ] || [ -d sequitur ] ; then
echo >&2 "$0: Warning: old installation of Sequitur found. You should manually"
Expand All @@ -59,7 +64,7 @@ if [ ! -d ./sequitur-g2p ] ; then
}
fi
#just to retain backward compatibility for a while. Can be removed
#in a couple of months.
#in a couple of months.
ln -sf sequitur-g2p sequitur


Expand Down