aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-10-19 14:47:01 -0700
committerBen Pfaff <blp@nicira.com>2010-10-29 09:48:47 -0700
commitd98e60075528c3065ad453f7add4b30f22edcde3 (patch)
tree01f2266cae63af507e6ac6b72ab8153b7d496bdd /build-aux
parent10a24935c9d382e4d85b05d9616843f3d3bb4983 (diff)
vlog: Make client supply semicolon for VLOG_DEFINE_THIS_MODULE.
It's kind of odd for VLOG_DEFINE_THIS_MODULE to supply its own semicolon, so this commit switches to the more common form.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/check-vlog-modules2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/check-vlog-modules b/build-aux/check-vlog-modules
index d40c048e..d6efaa4f 100755
--- a/build-aux/check-vlog-modules
+++ b/build-aux/check-vlog-modules
@@ -40,7 +40,7 @@ vlog_modules=`
# Get the list of modules defined in some source file.
src_modules=`
- git grep -h -E '^[ ]*VLOG_DEFINE(_THIS)?_MODULE\([_a-zA-Z0-9]+\)[ ]*$' \
+ git grep -h -E '^[ ]*VLOG_DEFINE(_THIS)?_MODULE\([_a-zA-Z0-9]+\);[ ]*$' \
| sed 's/.*(\([_a-zA-Z0-9]\{1,\}\)).*/\1/' \
| LC_ALL=C sort -u \
| xargs echo`