diff options
author | Emil Velikov <[email protected]> | 2018-10-31 21:54:49 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-11-01 00:05:43 +0000 |
commit | 4428eed896992c4166876cd09bedd7525feffe42 (patch) | |
tree | b59e30e793cf44be93bfab7b7b19a16e7dac5dcc /.travis.yml | |
parent | fcf15a007d7d32a9cce84f50cb024a638f7c092b (diff) |
travis: use mako for python2
Earlier commit flipped the default to python2 but forgot to update the
travis file. Props to pip caching things "worked" for a little while.
Fixes: f22ad5ef182 ("travis: use python3 for the autoconf builds")
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1e0e8758bf5..8d6ddb2f201 100644 --- a/.travis.yml +++ b/.travis.yml @@ -541,7 +541,7 @@ install: # Install autotools build dependencies - if test "x$BUILD" = xmake; then - pip3 install --user mako; + pip2 install --user mako; fi # Install a more modern scons from pip. |