Skip to content

Commit

Permalink
patch 8.1.1150: generating desktop files not tested on Travis
Browse files Browse the repository at this point in the history
Problem:    Generating desktop files not tested on Travis.
Solution:   Install a newer msgfmt package. (Christian Brabandt)
  • Loading branch information
brammool committed Apr 11, 2019
1 parent 26096cc commit 29a9baa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1150,
/**/
1149,
/**/
Expand Down

0 comments on commit 29a9baa

Please sign in to comment.