Fix openssl help invocation

Without this, the command will fail with:

    /opt/openssl/bin/openssl: /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1: version `OPENSSL_1_1_1' not found (required by /opt/openssl/bin/openssl)
This commit is contained in:
Gerhard Lazu 2019-01-15 18:49:02 +00:00
parent 5318927c3a
commit 327e1bc51a
No known key found for this signature in database
GPG Key ID: A28DE70C9444D7A6
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ RUN cd $OPENSSL_PATH && \
RUN cd $OPENSSL_PATH && \
make -j $(getconf _NPROCESSORS_ONLN) && \
make test install uninstall_docs && \
$OPENSSL_INSTALL_DIR/bin/openssl help && \
LD_LIBRARY_PATH=$OPENSSL_INSTALL_DIR/lib $OPENSSL_INSTALL_DIR/bin/openssl help && \
ls $OPENSSL_INSTALL_DIR/lib/libcrypto.so $OPENSSL_INSTALL_DIR/include/openssl/*.h
# Record OpenSSL artefacts size
RUN du -kh -d 1 $OPENSSL_INSTALL_DIR $OPENSSL_CONFIG_DIR >> /OPENSSL_BUILD_ARTEFACTS