projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ba20da
)
Travis: build python plugin
author
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 6 Mar 2016 11:46:15 +0000
(12:46 +0100)
committer
Ruben Kerkhof
<ruben@rubenkerkhof.com>
Sun, 6 Mar 2016 11:46:15 +0000
(12:46 +0100)
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.
.travis.yml
patch
|
blob
|
history
diff --git
a/.travis.yml
b/.travis.yml
index
b20d9a3
..
03d9dde
100644
(file)
--- 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"