aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrenfong.wang <drenfong.wang@intel.com>2019-01-23 08:27:01 +0000
committerdrenfong.wang <drenfong.wang@intel.com>2019-01-23 08:43:16 +0000
commit2b79568d6172f400a5fdfbd24d87c74843fd2446 (patch)
treecc071766b3fb5bc63494f677aaa2805ac9df3877
parenteee2e5e0e00412f1456cd48755229680517ee69c (diff)
add indent installation for fixstyle and change libssh 0.7.5(cannot build in ubuntu 18.04) to 0.7.7v19.04-rc0
Change-Id: I1fdce561ce0d2609f3f455c1e8762d547ce6f365 Signed-off-by: drenfong.wang <drenfong.wang@intel.com>
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 94dab5d..c247c40 100644
--- a/Makefile
+++ b/Makefile
@@ -38,9 +38,10 @@ endif
DEB_DEPENDS = curl build-essential autoconf automake ccache
DEB_DEPENDS += bison flex libpcre3-dev libev-dev libavl-dev libprotobuf-c-dev protobuf-c-compiler libcmocka-dev
-DEB_DEPENDS += cmake ninja-build python-pkgconfig python-dev libssl-dev
+DEB_DEPENDS += cmake ninja-build python-pkgconfig python-dev libssl-dev indent wget
-RPM_DEPENDS = curl autoconf automake ccache bison flex pcre-devel libev-devel protobuf-c-devel protobuf-c-compiler libcmocka-devel cmake ninja-build python-pkgconfig python-devel openssl-devel graphviz wget gcc gcc-c++
+RPM_DEPENDS = curl autoconf automake ccache bison flex pcre-devel libev-devel protobuf-c-devel protobuf-c-compiler libcmocka-devel
+RPM_DEPENDS = cmake ninja-build python-pkgconfig python-devel openssl-devel graphviz wget gcc gcc-c++ indent
ifeq ($(findstring y,$(UNATTENDED)),y)
CONFIRM=-y
@@ -133,8 +134,8 @@ endif
@rm -rf $(BR)/downloads
@mkdir -p $(BR)/downloads/&&cd $(BR)/downloads/\
\
- &&wget https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.7.5.tar.gz\
- &&tar xvf libssh-0.7.5.tar.gz && cd libssh-0.7.5 && mkdir build && cd build\
+ &&wget https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.7.7.tar.gz\
+ &&tar xvf libssh-0.7.7.tar.gz && cd libssh-0.7.7 && mkdir build && cd build\
&&cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr ..\
&&make&&sudo make install && sudo ldconfig&&cd ../../\
\