diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-07-05 14:54:34 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-07-06 10:29:54 +0000 |
commit | 07c3d165f440d7806d133513c321460c13aee0a5 (patch) | |
tree | e29ab93d4a936d5f181d8dde9e0f1664eb97bf9c /main/openssl/APKBUILD | |
parent | 04384a8e37cdd43ed03a9e5e79203935e3b8c673 (diff) | |
download | aports-07c3d165f440d7806d133513c321460c13aee0a5.tar.bz2 aports-07c3d165f440d7806d133513c321460c13aee0a5.tar.xz |
main/openssl: fix cross building
Diffstat (limited to 'main/openssl/APKBUILD')
-rw-r--r-- | main/openssl/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/openssl/APKBUILD b/main/openssl/APKBUILD index 8426176d87..4a33d1b46b 100644 --- a/main/openssl/APKBUILD +++ b/main/openssl/APKBUILD @@ -82,7 +82,7 @@ build() { # Build standalone version c_rehash app, so the huge openssl # binary is not mandatory requirement of ca-certificates - $CC $CFLAGS -I . -I include -L . "$_builddir"/apps/c_rehash.c -o c_rehash -lcrypto || return 1 + ${CROSS_COMPILE}$CC $CPPFLAGS $CFLAGS $LDFLAGS -I . -I include -L . "$_builddir"/apps/c_rehash.c -o c_rehash -lcrypto || return 1 } package() { |