diff options
author | Gerben Oolbekkink <g.j.w.oolbekkink@gmail.com> | 2019-03-23 12:31:21 +0100 |
---|---|---|
committer | Martin Nowack <m.nowack@imperial.ac.uk> | 2019-03-26 09:51:36 +0000 |
commit | 8fe6c47b1755f463594f7bc0b4e35e1145fa6e52 (patch) | |
tree | 9397a814d88e7c47a80a998cfe1d556ae0f3ce96 | |
parent | 2634250dd3bd7aae225a80e4f024874752432752 (diff) | |
download | klee-8fe6c47b1755f463594f7bc0b4e35e1145fa6e52.tar.gz |
Install tabulate when building.
Fixes #1069. This makes the tabulate package available in the Docker image.
-rw-r--r-- | scripts/build/p-klee-linux-ubuntu-16.04.inc | 2 | ||||
-rw-r--r-- | scripts/build/p-klee-osx.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/p-klee-linux-ubuntu-16.04.inc b/scripts/build/p-klee-linux-ubuntu-16.04.inc index b4ba3f33..418694ee 100644 --- a/scripts/build/p-klee-linux-ubuntu-16.04.inc +++ b/scripts/build/p-klee-linux-ubuntu-16.04.inc @@ -17,5 +17,5 @@ install_build_dependencies_klee() { apt -y --no-install-recommends install "${dependencies[@]}" - pip install lit + pip install lit tabulate } \ No newline at end of file diff --git a/scripts/build/p-klee-osx.inc b/scripts/build/p-klee-osx.inc index 2aa5c3e8..156bcbc6 100644 --- a/scripts/build/p-klee-osx.inc +++ b/scripts/build/p-klee-osx.inc @@ -10,5 +10,5 @@ install_build_dependencies_klee() { ln -s "${py2path}" /usr/local/bin/python ln -s "${pip2path}" /usr/local/bin/pip set -e - pip install lit + pip install lit tabulate } \ No newline at end of file |