aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMauro Sardara <msardara+fdio@cisco.com>2017-04-29 22:08:23 +0200
committerMauro Sardara <msardara+fdio@cisco.com>2017-04-29 21:50:52 +0000
commitfbcf0d957d90cf5ab969de3bb8a6dc74327205e4 (patch)
treecd8d77151c3eb16c15d68385b8c91cd7a07785cf /scripts
parent8eb99c48f492a311753113ac75fb99892b79ae39 (diff)
Fixing build dependencies to dev packages
Change-Id: Ic2c932d86a68c284fbfe3d9cce56a452f3d8ff04 Signed-off-by: Mauro Sardara <msardara+fdio@cisco.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build-package.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/build-package.sh b/scripts/build-package.sh
index 6ea9aab0..e459c969 100644
--- a/scripts/build-package.sh
+++ b/scripts/build-package.sh
@@ -1,5 +1,4 @@
#!/bin/bash
-# basic build script example
set -euxo pipefail
IFS=$'\n\t'
@@ -9,12 +8,12 @@ apt_get=${APT_PATH:-"/usr/local/bin/apt-get"}
BUILD_TOOLS_UBUNTU="build-essential cmake"
LIBSSL_LIBEVENT_UBUNTU="libevent-dev libssl-dev"
-DEPS_UBUNTU="$LIBSSL_LIBEVENT_UBUNTU longbow libparc libccnx-common libccnx-transport-rta libicnet libboost-system-dev libboost-regex-dev libboost-filesystem-dev "
+DEPS_UBUNTU="$LIBSSL_LIBEVENT_UBUNTU longbow-dev libparc-dev libccnx-common-dev libccnx-transport-rta-dev libicnet-dev libboost-system-dev libboost-regex-dev libboost-filesystem-dev"
BUILD_TOOLS_GROUP_CENTOS="'Development Tools'"
BUILD_TOOLS_SINGLE_CENTOS="cmake"
LIBSSL_LIBEVENT_CENTOS="libevent-devel openssl-devel"
-DEPS_CENTOS="$LIBSSL_LIBEVENT_CENTOS longbow libparc libccnx-common libccnx-transport-rta libicnet boost-devel"
+DEPS_CENTOS="$LIBSSL_LIBEVENT_CENTOS longbow-devel libparc-devel libccnx-common-devel libccnx-transport-rta-devel libicnet-devel boost-devel"
# Parameters:
# $1 = Distribution [Trusty / CentOS]
@@ -119,7 +118,6 @@ EOF
echo "Distribution $DISTRIB_CODENAME is not supported"
exit -1
fi
-
}
setup() {