diff options
author | Billy McFall <bmcfall@redhat.com> | 2016-10-20 08:50:11 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2016-10-22 02:45:04 +0000 |
commit | 8cb034b397d718d64317953f27684ff444194072 (patch) | |
tree | 00f8ad1a054341e8ff5e577505da5ad03148d31f /build-root/vagrant/build.sh | |
parent | 924d03a97b67c8172c38840558bba52ff1256ddd (diff) |
VPP-504: Permissions Error on Centos Vagrant VPP VM
Change-Id: I5e63538e0ba2395fb13f99f0c7c2ca3123a34e59
Signed-off-by: Billy McFall <bmcfall@redhat.com>
Diffstat (limited to 'build-root/vagrant/build.sh')
-rwxr-xr-x | build-root/vagrant/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/vagrant/build.sh b/build-root/vagrant/build.sh index e500240be59..76838e28a62 100755 --- a/build-root/vagrant/build.sh +++ b/build-root/vagrant/build.sh @@ -68,7 +68,7 @@ $SUDOCMD make bootstrap if [ $DISTRIB_ID == "Ubuntu" ]; then $SUDOCMD make pkg-deb elif [ $DISTRIB_ID == "CentOS" ]; then - (cd $VPP_DIR/vnet ;aclocal; automake -a) + (cd $VPP_DIR/vnet ;$SUDOCMD aclocal;$SUDOCMD automake -a) $SUDOCMD make pkg-rpm fi |