diff options
Diffstat (limited to 'sca-cpp/trunk/ubuntu/ubuntu-bin-all-image')
-rwxr-xr-x | sca-cpp/trunk/ubuntu/ubuntu-bin-all-image | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sca-cpp/trunk/ubuntu/ubuntu-bin-all-image b/sca-cpp/trunk/ubuntu/ubuntu-bin-all-image index a6eef2e494..e1f6c048e7 100755 --- a/sca-cpp/trunk/ubuntu/ubuntu-bin-all-image +++ b/sca-cpp/trunk/ubuntu/ubuntu-bin-all-image @@ -34,7 +34,7 @@ sudo chgrp $g /mnt/tuscany cd /mnt/tuscany # Install core dev tools -sudo apt-get -y install wget git-core subversion autoconf pkg-config automake libtool g++ +sudo apt-get -y install wget git-core subversion autoconf pkg-config automake libtool g++ make if [ "$?" != "0" ]; then exit $? fi @@ -48,6 +48,11 @@ sudo apt-get -y install libevent-dev if [ "$?" != "0" ]; then exit $? fi +# Required by SpiderMonkey +sudo apt-get -y install zip unzip +if [ "$?" != "0" ]; then + exit $? +fi # Required by Apache Qpid/C++ sudo apt-get -y install libboost-dev libboost-program-options-dev libboost-filesystem-dev uuid-dev if [ "$?" != "0" ]; then |