Skip to content

Commit

Permalink
reduce changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andarut committed Apr 3, 2024
1 parent 2f6a2a4 commit 8ec27a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/Dockerfile.buster
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ RUN apt-get update && \
tar -xvzf openssl-3.0.2.tar.gz && \
cd openssl-3.0.2 && \
chmod +x ./config && \
./Configure && \
make -j$(nproc) && make -j$(nproc) install && \
ldconfig /usr/local/lib64/
./config --prefix="/usr/local/" && \
make -j$(nproc) && make install

RUN useradd -ms /bin/bash kitten
2 changes: 1 addition & 1 deletion cmake/init-compilation-flags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ else()
endif()

if(LINUX)
set(OPENSSL_ROOT_DIR "/usr/local")
set(OPENSSL_ROOT_DIR "/usr/local/" CACHE INTERNAL "")
set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS TRUE)
endif()
set(OPENSSL_USE_STATIC_LIBS TRUE)
Expand Down

0 comments on commit 8ec27a2

Please sign in to comment.