summaryrefslogtreecommitdiff
path: root/tutorial
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@samsung.com>2016-01-29 12:20:13 +0300
committerRussell Bryant <russell@ovn.org>2016-01-29 07:46:24 -0500
commit72eaa2baa910ba41ed29b56617bffbc46bafc342 (patch)
tree4b6dcbda12eb4f000bd7f8383cfee84baafe7981 /tutorial
parent5494063acb1036ff92d3a63b16381256bc0174df (diff)
downloadopenvswitch-72eaa2baa910ba41ed29b56617bffbc46bafc342.tar.gz
ovn: Remove top ovn directory from PATHs.
Since 5b5c922b0ca6 ("ovn-nbctl: Move ovn-nbctl to utilities directory.") there is no more executables in top ovn directory. Removing of this directory from PATHs helps to avoid problems when old executable ./ovn/ovn-nbctl used instead of ./ovn/utilities/ovn-nbctl. This may happen if source directory was updated to commit 5b5c922b0ca6 without calling 'make clean'. Fixes: 5b5c922b0ca6 ("ovn-nbctl: Move ovn-nbctl to utilities directory.") Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Russell Bryant <russell@ovn.org>
Diffstat (limited to 'tutorial')
-rwxr-xr-xtutorial/ovs-sandbox2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/ovs-sandbox b/tutorial/ovs-sandbox
index a2e9f7a8c..ea3b827fe 100755
--- a/tutorial/ovs-sandbox
+++ b/tutorial/ovs-sandbox
@@ -260,7 +260,7 @@ if $built; then
fi
PATH=$builddir/ovsdb:$builddir/vswitchd:$builddir/utilities:$builddir/vtep:$PATH
if $ovn; then
- PATH=$builddir/ovn:$builddir/ovn/controller:$builddir/ovn/controller-vtep:$builddir/ovn/northd:$builddir/ovn/utilities:$PATH
+ PATH=$builddir/ovn/controller:$builddir/ovn/controller-vtep:$builddir/ovn/northd:$builddir/ovn/utilities:$PATH
fi
export PATH
else