diff options
author | Hanoh Haim <hhaim@cisco.com> | 2017-02-07 13:57:25 +0200 |
---|---|---|
committer | Ido Barnea <ibarnea@cisco.com> | 2017-02-13 12:32:25 +0200 |
commit | df1d83a3e62c237ae30272b36ae283a5fb7334a8 (patch) | |
tree | 3c202b72f4963ac3d77ab9eb06623f5a2cebe516 | |
parent | d9557003ab6988c0a0818df1d11542ece8570305 (diff) |
remove verbs include from DPDK
Signed-off-by: Hanoh Haim <hhaim@cisco.com>
-rwxr-xr-x | linux_dpdk/ws_main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux_dpdk/ws_main.py b/linux_dpdk/ws_main.py index 68578645..eddd237c 100755 --- a/linux_dpdk/ws_main.py +++ b/linux_dpdk/ws_main.py @@ -886,7 +886,7 @@ def build_prog (bld, build_obj): bld.objects( features='c ', - includes = dpdk_includes_path+dpdk_includes_verb_path, + includes = dpdk_includes_path, cflags = (build_obj.get_c_flags()+DPDK_FLAGS ), source = bp_dpdk.file_list(top), @@ -952,8 +952,8 @@ def build_info(bld): def do_create_link (src,dst,exec_p): if os.path.exists(src): dest_file = exec_p +dst - print(dest_file) if not os.path.lexists(dest_file): + print(dest_file) relative_path = os.path.relpath(src, exec_p) os.symlink(relative_path, dest_file); |