summaryrefslogtreecommitdiffstats
path: root/.travis-functions.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis-functions.sh')
-rwxr-xr-x.travis-functions.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis-functions.sh b/.travis-functions.sh
index f0a0d8990..d92927e77 100755
--- a/.travis-functions.sh
+++ b/.travis-functions.sh
@@ -79,6 +79,9 @@ function check_root
osx_prepare_check
sudo -E $MAKE check TS_OPTS="$opts" || return
+ # root on osx has not enough permission for make install ;)
+ [ "$TRAVIS_OS_NAME" = "osx" ] && return
+
# keep PATH to make sure sudo would find $CC
sudo env "PATH=$PATH" $MAKE install || return
}