Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added missing dependency in build script (ncurses)
  • Loading branch information
Kurt Bonne committed Nov 30, 2011
1 parent e5c11df commit eaf5b23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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};
Expand Down
5 changes: 2 additions & 3 deletions hudson/pre/01_apt_get_deps.sh
Expand Up @@ -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

0 comments on commit eaf5b23

Please sign in to comment.