From: Ivan Maidanski Date: Wed, 1 Feb 2017 17:24:16 +0000 (+0300) Subject: Travis CI: Refactoring (rename ENABLE_CPP variable to CONF_CPP) X-Git-Tag: v8.0.0~934 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7807132efce0b6bc0238c8dd0164392aa315c19f;p=gc Travis CI: Refactoring (rename ENABLE_CPP variable to CONF_CPP) (fix commit 6c48bae) --- diff --git a/.travis.yml b/.travis.yml index 249bd188..a8e208e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" && "$CFLAGS_EXTRA_M" == "-m32" ]]; then sudo apt-get install gcc-multilib; else - ENABLE_CPP=--enable-cplusplus; + CONF_CPP=--enable-cplusplus; fi install: @@ -31,5 +31,5 @@ install: - ./autogen.sh script: - - ./configure $ENABLE_CPP --enable-gc-debug --enable-munmap --enable-werror + - ./configure $CONF_CPP --enable-gc-debug --enable-munmap --enable-werror - make -j check CFLAGS_EXTRA="$CFLAGS_EXTRA_M"