Browse Source

Fix hiredis static build

master
Ray Burgemeestre 5 months ago
parent
commit
5f963b89e9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      redis-plus-plus/Makefile

+ 1
- 1
redis-plus-plus/Makefile View File

@@ -27,7 +27,7 @@ ubuntu2404:
.PHONY : hiredis
hiredis:
pushd hiredis && \
cmake -DCMAKE_INSTALL_PREFIX=$$PWD/../out/hiredis -DENABLE_SSL=off . && \
cmake -DCMAKE_INSTALL_PREFIX=$$PWD/../out/hiredis -DENABLE_SSL=off -DBUILD_SHARED_LIBS=OFF . && \
make USE_SSL=0 && \
make PREFIX=$$PWD/../out/hiredis USE_SSL=0 install && \
popd

Loading…
Cancel
Save