diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-09-14 10:49:45 +0200 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-09-14 10:49:45 +0200 |
commit | 0a58590934db289ce15d5af0c5d4e82c2793ffc8 (patch) | |
tree | c9eb12bfca126a10b3d4be7147809156a05d81d5 /.ci | |
parent | 772759baa23802367d692721fa6ca700a243ce40 (diff) | |
download | efl-0a58590934db289ce15d5af0c5d4e82c2793ffc8.tar.gz |
ci: silence libtool
attempt to disable some libtool warnings throughout the build
https://phab.enlightenment.org/D6661
[Hand edited to get it applied. Stefan]
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/ci-configure.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index bf551f53e3..00f9e4b750 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -55,7 +55,7 @@ if [ "$DISTRO" != "" ] ; then travis_fold autoreconf autoreconf docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 --env CC="ccache gcc" \ --env CXX="ccache g++" --env CFLAGS="-fdirectives-only" --env CXXFLAGS="-fdirectives-only" \ - --env LD="ld.gold" $(cat $HOME/cid) sh -c "autoreconf -iv" + --env LD="ld.gold" $(cat $HOME/cid) sh -c "LIBTOOLIZE_OPTIONS='--no-warn' autoreconf -iv" travis_endfold autoreconf travis_fold configure "configure $OPTS" docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 --env CC="ccache gcc" \ @@ -78,7 +78,7 @@ else # Normal build test of all targets rm -f ~/.ccache/ccache.conf travis_fold autoreconf autoreconf - autoreconf -iv + LIBTOOLIZE_OPTIONS='--no-warn' autoreconf -iv travis_endfold autoreconf travis_fold configure "configure $OSX_COPTS" .ci/configure.sh $OSX_COPTS |