From 72432608f20e30ff6ba80022447824e0e9648e4f Mon Sep 17 00:00:00 2001 From: Dan Klein Date: Mon, 10 Aug 2015 18:51:20 +0300 Subject: fixed reference bug --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 51f2d103..9e523152 100755 --- a/wscript +++ b/wscript @@ -125,7 +125,7 @@ def build_cp_docs (trex_src_dir, dest_dir = "_build", builder = "html"): src= ".", dst= dest_dir) ) - bld_path = os.path.abspath( os.path.join(trex_src_dir, 'automation', 'trex_control_plane', 'doc') ) + bld_path = os.path.abspath( os.path.join(trex_src_dir, 'scripts', 'automation', 'trex_control_plane', 'doc') ) ret_val = subprocess.call(build_doc_cmd, cwd = bld_path) if ret_val: raise RuntimeError("Build operation of control plain docs failed with return value {ret}".format(ret= ret_val)) -- cgit