2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 22:12:27 +00:00

openssl: Fix build with clang. See #278

This commit is contained in:
Dylan Araps 2021-07-12 19:53:43 +03:00
parent 17e1d6fad5
commit 6494390713
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -1,5 +1,9 @@
#!/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 \
@ -9,7 +13,7 @@
linux-x86_64
make depend
make
make V=1
make DESTDIR="$1" \
install_sw \