openpower-build-setup: Add missing deps
You must install 'wget' on your build machine
You must install 'cpio' on your build machine
You must install 'bc' on your build machine
support/dependencies/dependencies.mk:28: recipe for target
'core-dependencies' failed
Signed-off-by: Joel Stanley <joel@jms.id.au>
diff --git a/openpower-build-setup.sh b/openpower-build-setup.sh
index de73588..4251871 100755
--- a/openpower-build-setup.sh
+++ b/openpower-build-setup.sh
@@ -46,7 +46,7 @@
apt-get install -y \
cscope ctags libz-dev libexpat-dev python language-pack-en texinfo \
build-essential g++ git bison flex unzip libxml-simple-perl \
- libxml-sax-perl libxml2-dev libxml2-utils xsltproc
+ libxml-sax-perl libxml2-dev libxml2-utils xsltproc wget cpio bc
RUN groupadd -g ${GROUPS} ${USER} && useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
USER ${USER}