branch: elpa/popup commit aa8762fb25dc6cfacc12bcf079ff248a715a580f Author: Syohei YOSHIDA <syo...@gmail.com> Commit: Syohei YOSHIDA <syo...@gmail.com>
Fix travis configuration file for using cl-lib cl-lib is not default package before Emacs 24.3. So it should be installed before tests. --- .travis.yml | 1 + Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 57f385b..1a07d7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: emacs-lisp before_install: - git submodule update --init + - make tests/cl-lib.el - if [ "$EMACS" = 'emacs-snapshot' ]; then sudo add-apt-repository -y ppa:cassou/emacs && sudo apt-get update -qq && diff --git a/Makefile b/Makefile index 63e2614..4fea1d4 100644 --- a/Makefile +++ b/Makefile @@ -20,3 +20,6 @@ travis-ci: tests/ert.el: wget "http://git.savannah.gnu.org/cgit/emacs.git/plain/lisp/emacs-lisp/ert.el" -O $@ + +tests/cl-lib.el: + wget "http://elpa.gnu.org/packages/cl-lib-0.3.el" -O $@