diff options
author | Masanori Kakura <kakurasan@gmail.com> | 2018-08-12 12:49:23 +0900 |
---|---|---|
committer | Masanori Kakura <kakurasan@gmail.com> | 2018-08-12 15:27:00 +0900 |
commit | 797bde1e3ce0f5ba16968846e8df6c480cf9e2c9 (patch) | |
tree | 11db97c49df13c9260541e7c0214bf8b3c9165dc | |
parent | Merge pull request #610 from kakurasan/xdg-spec-data (diff) | |
download | redshift-ng-797bde1e3ce0f5ba16968846e8df6c480cf9e2c9.tar.gz redshift-ng-797bde1e3ce0f5ba16968846e8df6c480cf9e2c9.tar.bz2 redshift-ng-797bde1e3ce0f5ba16968846e8df6c480cf9e2c9.tar.xz |
Travis: Fix automake on macOS
Temporary workaround for distuninstallcheck error.
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 61474cc..b165a69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,13 @@ before_install: | brew link --force gettext brew install intltool brew upgrade python + + # distuninstallcheck fails on macOS when automake 1.16 or 1.16.1 is used. + # http://gnu-automake.7480.n7.nabble.com/bug-31222-automake-1-16-1-am-pep3147-tweak-bug-td22937.html + # No upstream release yet, use upstream patch. + pushd /usr/local/Cellar/automake/*/share/automake-* + curl "https://git.savannah.gnu.org/cgit/automake.git/patch/?id=a348d830659fffd2cfc42994524783b07e69b4b5" | tail -n 14 | sudo patch -p2 + popd fi install: |