From 006141b911f7d4c4fcff93eaa7f0534015e21eaa Mon Sep 17 00:00:00 2001 From: Timothy Stack Date: Fri, 7 Apr 2017 07:44:50 -0700 Subject: [PATCH] [build] fix configure script flags --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8b33004a..8038d34d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ compiler: gcc sudo: false install: - if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi -script: ./autogen.sh && ./configure && make distcheck -j3 +script: ./autogen.sh && ./configure LDFLAGS="-static-libstdc++ -static-libgcc" && make distcheck -j3 after_script: test -e test/test-suite.log && cat test/test-suite.log env: