From: Ruben Kerkhof Date: Sun, 6 Mar 2016 11:46:15 +0000 (+0100) Subject: Travis: build python plugin X-Git-Tag: collectd-5.6.0~400 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;ds=sidebyside;h=0d9e19671fced0c3eb30167e21487a1804af5eb4;p=collectd.git Travis: build python plugin The Travis image has various python versions installed in /opt, none of which have development headers, and they are first in the PATH. Explicitly use the python in /usr/bin instead. --- diff --git a/.travis.yml b/.travis.yml index b20d9a31..03d9dded 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,4 +53,4 @@ before_install: perl protobuf-c-compiler python-dev -script: sh build.sh && ./configure && make distcheck +script: sh build.sh && ./configure --with-python=/usr/bin/python && make distcheck DISTCHECK_CONFIGURE_FLAGS="--with-python=/usr/bin/python"