diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2019-03-14 11:53:50 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2019-03-14 17:07:08 +0100 |
commit | 8a6e89358dcf1dc3f7ee266f104cc943bb6fadc0 (patch) | |
tree | f759c362ac62fb4fea5119771c9cad5ab7ba0a4b /.ci/ci-configure.sh | |
parent | ba1c94d051ebfd3c57a9220e8553bd7a950b0fce (diff) | |
download | efl-8a6e89358dcf1dc3f7ee266f104cc943bb6fadc0.tar.gz |
ci: force osx libffi dep to be found
this is also really, really stupid.
ref D8305
Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Differential Revision: https://phab.enlightenment.org/D8340
Diffstat (limited to '.ci/ci-configure.sh')
-rwxr-xr-x | .ci/ci-configure.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index dc50f44533..c4b295e919 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -147,7 +147,8 @@ else export CFLAGS="-I/usr/local/opt/openssl/include -frewrite-includes $CFLAGS" export LDFLAGS="-L/usr/local/opt/openssl/lib $LDFLAGS" - export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig" + LIBFFI_VER=$(brew list --versions libffi|head -n1|cut -d' ' -f2) + export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig:/usr/local/Cellar/libffi/$LIBFFI_VER/lib/pkgconfig # Normal build test of all targets rm -f ~/.ccache/ccache.conf |