From 06abcab627c03306e3bb152ce91f6d4472ac4cd9 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Fri, 15 Jul 2016 19:39:20 +0100 Subject: [PATCH] Fix install command for hiredis in travis script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f41b794..0d96536 100644 --- a/.travis.yml +++ b/.travis.yml @@ -83,7 +83,7 @@ install: - | if [ ! -f opt/lib/libhiredis.so ]; then mkdir hiredis && travis_retry wget --quiet -O - https://github.com/redis/hiredis/archive/v0.13.3.tar.gz | tar --strip-components=1 -xz -C hiredis - (cd hiredis && make && cp libhiredis.so ${DEPS_DIR}/opt/lib) + (cd hiredis && make && make PREFIX=${DEPS_DIR}/opt install) fi - cd ${TRAVIS_BUILD_DIR}