From af75b8a96f9067de5cec42ff8b06a44ab6e92761 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 15 Jul 2021 15:02:11 +0300 Subject: [PATCH] openssl: update for new env --- core/openssl/build | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/core/openssl/build b/core/openssl/build index 6c1dd145..a97554bf 100755 --- a/core/openssl/build +++ b/core/openssl/build @@ -1,9 +1,5 @@ #!/bin/sh -e -# Build with CC for clang compatibility. -# If CC is unset, GCC is forced. -export CC="${CC:-cc}" - ./Configure \ --prefix=/usr \ --openssldir=/etc/ssl \ @@ -13,12 +9,8 @@ export CC="${CC:-cc}" linux-x86_64 make depend -make V=1 - -make DESTDIR="$1" \ - install_sw \ - install_ssldirs \ - install_man_docs +make +make DESTDIR="$1" install_sw install_ssldirs install_man_docs cp -f update-certdata.sh "$1/etc/ssl" @@ -31,5 +23,5 @@ cp -f update-certdata.sh "$1/etc/ssl" --with-openssl="$1/usr" make - make DESTDIR="$1" install + make install )