openSUSE build fix 06/8506/2
authorMarco Varlese <marco.varlese@suse.com>
Fri, 22 Sep 2017 15:53:53 +0000 (17:53 +0200)
committerChris Luke <chris_luke@comcast.com>
Fri, 22 Sep 2017 20:53:59 +0000 (20:53 +0000)
* Fixed package dependency
* Fixed bash unary operation error

Change-Id: I782dda8ffd807931241fa6034c110f5fedbeca8e
Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Makefile
extras/vagrant/build.sh

index b8aca47..cc26ea5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ else ifeq ($(findstring y,$(AESNI)),y)
 endif
 
 RPM_SUSE_DEPENDS = autoconf automake bison ccache chrpath distribution-release gcc6 glibc-devel-static
-RPM_SUSE_DEPENDS += java-1_8_0-openjdk-devel libopenssl-devel libtool lsb-release make openssl-devel
+RPM_SUSE_DEPENDS += java-1_8_0-openjdk-devel libopenssl-devel libtool make openssl-devel
 RPM_SUSE_DEPENDS += python-devel python-pip python-rpm-macros shadow nasm libnuma-devel python3
 
 ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID))
index 34873f9..fcfd52a 100755 (executable)
@@ -72,12 +72,14 @@ fi
 # Build and install packaging
 $SUDOCMD make bootstrap
 
-if [ $DISTRIB_ID == "Ubuntu" ]; then
+if [ "$DISTRIB_ID" == "Ubuntu" ]; then
     $SUDOCMD make pkg-deb
-elif [ $DISTRIB_ID == "debian" ]; then
+elif [ "$DISTRIB_ID" == "debian" ]; then
     $SUDOCMD make pkg-deb
-elif [ $DISTRIB_ID == "CentOS" ]; then
+elif [ "$DISTRIB_ID" == "CentOS" ]; then
     (cd $VPP_DIR/vnet ;$SUDOCMD aclocal;$SUDOCMD automake -a)
     $SUDOCMD make pkg-rpm
+elif [ "$DISTRIB_ID" == "opensuse" ]; then
+    $SUDOCMD make build-release
 fi