diff --git a/hudson/pre.sh b/hudson/pre.sh index cc67302e..cf11227d 100755 --- a/hudson/pre.sh +++ b/hudson/pre.sh @@ -1,7 +1,7 @@ set -e set -u -for STEP in `ls pre/*.sh`; +for STEP in `ls ./hudson/pre/*.sh`; do chmod u+x ${STEP}; ./${STEP}; diff --git a/hudson/pre/01_apt_get_deps.sh b/hudson/pre/01_apt_get_deps.sh index 349e0e05..5518c3f0 100755 --- a/hudson/pre/01_apt_get_deps.sh +++ b/hudson/pre/01_apt_get_deps.sh @@ -2,6 +2,5 @@ set -e set -u echo "Installing all packages needed to build Arakoon (TODO: validate packages)" -sudo apt-get install build-essential autoconf libtool libfuse-dev pkg-config \ - libglib2.0-dev uuid-dev liblog4c-dev python-setuptools liblog4cxx10-dev \ - automake python-nose -y +sudo apt-get install build-essential autoconf libtool pkg-config \ + libglib2.0-dev uuid-dev liblog4c-dev automake libncurses5-dev -y