summaryrefslogtreecommitdiff
path: root/travis/compile.sh
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2015-08-23 22:47:51 +0200
committerFerenc Kovacs <tyrael@php.net>2015-08-23 22:47:51 +0200
commit85d34c32642dbe75eaf27d0098e77005b45cbcba (patch)
treedcab74404d8a6780cfdd6ccb287bec33c69e77dc /travis/compile.sh
parent15e9f4baf48f1a02091d1dbf505d9c6d561bc1d4 (diff)
downloadphp-git-85d34c32642dbe75eaf27d0098e77005b45cbcba.tar.gz
let's try running our testsuite without sudo
Diffstat (limited to 'travis/compile.sh')
-rwxr-xr-xtravis/compile.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/travis/compile.sh b/travis/compile.sh
index 039ed65cb9..682d5d8598 100755
--- a/travis/compile.sh
+++ b/travis/compile.sh
@@ -10,7 +10,9 @@ else
DEBUG="";
fi
./buildconf --force
-./configure --quiet \
+./configure \
+--prefix=$HOME"/php-install" \
+--quiet \
$DEBUG \
$TS \
--enable-fpm \
@@ -50,4 +52,4 @@ $TS \
--with-gmp \
--enable-bcmath
make -j2 --quiet
-sudo make install
+make install