diff options
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -131,7 +131,7 @@ def etags(ctx): '''build TAGS file using etags''' import Utils source_root = os.path.dirname(Utils.g_module.root_path) - cmd = 'etags $(find %s/.. -name "*.[ch]" | egrep -v \.inst\.)' % source_root + cmd = 'etags $(find %s -name "*.[ch]" | egrep -v \.inst\.)' % source_root print("Running: %s" % cmd) os.system(cmd) @@ -139,7 +139,7 @@ def ctags(ctx): "build 'tags' file using ctags" import Utils source_root = os.path.dirname(Utils.g_module.root_path) - cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.)' % source_root + cmd = 'ctags $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.)' % source_root print("Running: %s" % cmd) os.system(cmd) |