From: Reuben Thomas Date: Sun, 28 Jan 2018 19:07:38 +0000 (+0000) Subject: macOS Travis fix: Cython extension needs installed librecode X-Git-Tag: v3.7~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24ac4935e04f6107bf52c9d5f160f0cb2c15bf4c;p=recode macOS Travis fix: Cython extension needs installed librecode --- diff --git a/.travis.yml b/.travis.yml index fd0f1a0..df4ead6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -58,4 +58,5 @@ script: - ./bootstrap - ./configure --enable-silent-rules - make - - make distcheck + # The Cython-built Python extension doesn’t work without make install on macOS + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make install && make check ; else make distcheck ; fi