about summary refs log tree commit diff homepage
path: root/.travis
diff options
context:
space:
mode:
authorDan Liew <daniel.liew@imperial.ac.uk>2015-04-09 15:33:45 +0100
committerDan Liew <daniel.liew@imperial.ac.uk>2015-04-09 15:34:53 +0100
commitc20e4be353b7fbba256248724b856fb245641cd9 (patch)
tree08b47c1b1cd454a8b6ec4c3cc1c8f84743fbca08 /.travis
parentf0de5e4ea4f1bed2e698ae99a19f1f0b96770f9c (diff)
downloadklee-c20e4be353b7fbba256248724b856fb245641cd9.tar.gz
Fix mistake if TravisCI scripts where configure flag for enabling POSIX
runtime was incorrect.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/klee.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/klee.sh b/.travis/klee.sh
index faf3f5f5..3106dca9 100755
--- a/.travis/klee.sh
+++ b/.travis/klee.sh
@@ -33,7 +33,7 @@ if [ "${KLEE_UCLIBC}" -eq 1 ]; then
     cd klee-uclibc
     ./configure --make-llvm-lib --with-cc "${KLEE_CC}" --with-llvm-config /usr/bin/llvm-config-${LLVM_VERSION}
     make
-    KLEE_UCLIBC_CONFIGURE_OPTION="--with-uclibc=$(pwd) --with-posix-runtime"
+    KLEE_UCLIBC_CONFIGURE_OPTION="--with-uclibc=$(pwd) --enable-posix-runtime"
     cd ../
 else
     KLEE_UCLIBC_CONFIGURE_OPTION=""