diff options
author | Mauro Sardara <msardara@cisco.com> | 2020-10-20 09:58:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2020-10-20 09:58:34 +0000 |
commit | aeac50d248f1f734e5faae90d4695b4dfe70703a (patch) | |
tree | ace1dee6c5325698a48baf71be4d1005f5acf27e | |
parent | 7a1839158939e3517aee1d60f92703ba9433d6c9 (diff) | |
parent | 07d9d5b19316dd06b466eccbd7c490504c36dc6d (diff) |
Merge "[HICN-649] Fix build script."
-rw-r--r-- | scripts/build-packages.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build-packages.sh b/scripts/build-packages.sh index abbb2565a..cc9074d38 100644 --- a/scripts/build-packages.sh +++ b/scripts/build-packages.sh @@ -24,8 +24,8 @@ PACKAGECLOUD_RELEASE_REPO_RPM="https://packagecloud.io/install/repositories/fdio VPP_GIT_REPO="https://git.fd.io/vpp" VPP_BRANCH="stable/2005" -VPP_VERSION_DEB="20.05-release" -VPP_VERSION_RPM="20.05-release.x86_64" +VPP_VERSION_DEB="20.09-release" +VPP_VERSION_RPM="20.09-release.x86_64" BUILD_TOOLS_UBUNTU="build-essential doxygen" LIBSSL_LIBEVENT_UBUNTU="libevent-dev libssl-dev" @@ -151,7 +151,7 @@ setup() { # Install dependencies if [ ${DISTRIB_ID} == "ubuntu" ]; then - echo ${BUILD_TOOLS_UBUNTU} ${DEPS_UBUNTU_NOVERSION} | xargs sudo ${apt_get} install -y --allow-unauthenticated --no-install-recommends + echo ${BUILD_TOOLS_UBUNTU} ${DEPS_UBUNTU} | xargs sudo ${apt_get} install -y --allow-unauthenticated --no-install-recommends elif [ ${DISTRIB_ID} == "centos" ]; then # echo ${BUILD_TOOLS_GROUP_CENTOS} | xargs sudo yum groupinstall -y --nogpgcheck echo ${DEPS_CENTOS} | xargs sudo yum install -y --nogpgcheck |