aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Varlese <marco.varlese@suse.com>2017-09-22 17:53:53 +0200
committerChris Luke <chris_luke@comcast.com>2017-09-22 20:53:59 +0000
commitdc33d4ccb3712ab313f9d471cde35ef208aa0e29 (patch)
treeaeae86de5c0126d342638804ba723c12c61ffafa
parentb66201f76143391cc9b81d9c419919b9fd914a24 (diff)
openSUSE build fix
* Fixed package dependency * Fixed bash unary operation error Change-Id: I782dda8ffd807931241fa6034c110f5fedbeca8e Signed-off-by: Marco Varlese <marco.varlese@suse.com>
-rw-r--r--Makefile2
-rwxr-xr-xextras/vagrant/build.sh8
2 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b8aca470..cc26ea52 100644
--- 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))
diff --git a/extras/vagrant/build.sh b/extras/vagrant/build.sh
index 34873f96..fcfd52aa 100755
--- a/extras/vagrant/build.sh
+++ b/extras/vagrant/build.sh
@@ -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