diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-19 20:30:14 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:55 +1000 |
commit | 75c2c870c1b5a7890001194da44489366f6e950d (patch) | |
tree | 6d415fd0bef9c8e1b34b675e2f293a87f3758087 /source4/wscript | |
parent | 344621cb0ff37167cb616bd6df0471318951f584 (diff) | |
download | samba-75c2c870c1b5a7890001194da44489366f6e950d.tar.gz samba-75c2c870c1b5a7890001194da44489366f6e950d.tar.bz2 samba-75c2c870c1b5a7890001194da44489366f6e950d.zip |
build: spelling fix, and syntax highlighting fix
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/wscript b/source4/wscript index 06206435f2..23ea975a9e 100644 --- a/source4/wscript +++ b/source4/wscript @@ -77,11 +77,11 @@ def etags(ctx): os.system(cmd) def ctags(ctx): - '''build 'tags' file using ctags''' + "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")' % source_root - print "Rinning: %s" % cmd + print "Running: %s" % cmd os.system(cmd) # putting this here enabled build in the list |