diff mbox

[ovs-dev,v3,06/10] ovs-dev.py: allow current directory to be used as the working directory

Message ID 1442271254-27897-7-git-send-email-azhou@nicira.com
State Changes Requested
Headers show

Commit Message

Andy Zhou Sept. 14, 2015, 10:54 p.m. UTC
Rather than forcing a single ovs source tree under ~/ovs, this
change supports invoking the script from the root of any
ovs source tree as the working source tree. If the script is invoked
from a directory not recognized as OVS source tree, ~/ovs will
then be used.

Signed-off-by: Andy Zhou <azhou@nicira.com>
---
 utilities/ovs-dev.py | 3 +++
 1 file changed, 3 insertions(+)

Comments

Ben Pfaff Sept. 18, 2015, 7:57 p.m. UTC | #1
I'm not going to review the ovs-dev.py changes since I don't use that
script.

I hope someone else will review them.
diff mbox

Patch

diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py
index 8128b08..54989e6 100755
--- a/utilities/ovs-dev.py
+++ b/utilities/ovs-dev.py
@@ -22,7 +22,10 @@  import tempfile
 
 ENV = os.environ
 HOME = ENV["HOME"]
+PWD = os.getcwd()
 OVS_SRC = HOME + "/ovs"
+if os.path.exists(PWD + "/WHY-OVS.md"):
+    OVS_SRC = PWD  # Use current directory as OVS source tree
 ROOT = HOME + "/root"
 BUILD_GCC = OVS_SRC + "/_build-gcc"
 BUILD_CLANG = OVS_SRC + "/_build-clang"