Mercurial > vim
changeset 16291:f80c1a4be2c5 v8.1.1150
patch 8.1.1150: generating desktop files not tested on Travis
commit https://github.com/vim/vim/commit/29a9baa0779c21f3d055a7b119d6d5650f4ae56e
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Apr 11 15:49:11 2019 +0200
patch 8.1.1150: generating desktop files not tested on Travis
Problem: Generating desktop files not tested on Travis.
Solution: Install a newer msgfmt package. (Christian Brabandt)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 11 Apr 2019 16:00:06 +0200 |
parents | af4656bdc3b5 |
children | 7abbf947c185 |
files | .travis.yml src/version.c |
diffstat | 2 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/.travis.yml +++ b/.travis.yml @@ -115,6 +115,13 @@ before_install: if [[ "${TRAVIS_OS_NAME}" = "linux" ]] && [[ "${CC}" = "clang" ]]; then ln -sf "$(which llvm-cov)" /home/travis/bin/gcov fi + # Need msgfmt 0.19.8 to be able to generate .desktop files + - | + if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then + sudo add-apt-repository ppa:ricotz/toolchain -y && + sudo apt-get update -q && + sudo apt-get install gettext=0.19.8.1-1ubuntu2~14.04~ricotz1 -y + fi before_script: # Start virtual framebuffer to be able to test the GUI. Does not work on OS X.