summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar fab <fabrice.leal.ch@gmail.com>2018-11-17 22:31:42 +0000
committerGravatar fab <fabrice.leal.ch@gmail.com>2018-11-17 22:31:42 +0000
commit6caadfc4b175f4703cff9776939478ccdf8abc2d (patch)
treec870fcc69acbfa3e3c1679aae449877a83c85cbc /.travis.yml
parentc2a217f9121dd865122bc6150c53e77bd662050d (diff)
fix package name
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 86d731cc..a36dc7ff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,11 +18,11 @@ compiler:
before_install:
- export CONFIGURE_ARGS=""
- if command -v apt-get &>/dev/null; then sudo apt-get update -qq; fi
- - if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton lib-icudev; fi
+ - if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton libicu-dev; fi
- if command -v brew &>/dev/null; then brew update; fi
- if command -v brew &>/dev/null; then brew uninstall libtool; fi
- if command -v brew &>/dev/null; then brew install libtool; fi
- - if command -v brew &>/dev/null; then brew install openssl mlton; fi
+ - if command -v brew &>/dev/null; then brew install openssl mlton libicu-dev; fi
- if command -v brew &>/dev/null; then export CONFIGURE_ARGS="--with-openssl=/usr/local/opt/openssl"; fi
script: ./autogen.sh && ./configure $CONFIGURE_ARGS && make && make test