summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-10-16 09:46:40 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-10-16 10:06:21 -0400
commit087eee69503265f1e5f5c084c4721d90a854a6ac (patch)
tree7e1538de8c4ff4976d3b58715d47260014554f04 /dist
parent97c99c908366cd969864accc77c2cd2d08cded3d (diff)
downloadmongo-087eee69503265f1e5f5c084c4721d90a854a6ac.tar.gz
Rename serial_funcs.i -> serial.i, matching other include files.
Diffstat (limited to 'dist')
-rw-r--r--dist/serial.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/serial.py b/dist/serial.py
index 8e62940c740..f9d562c8014 100644
--- a/dist/serial.py
+++ b/dist/serial.py
@@ -145,12 +145,12 @@ def output(entry, f):
''')
#####################################################################
-# Update serial_funcs.i.
+# Update serial.i.
#####################################################################
tmp_file = '__tmp'
tfile = open(tmp_file, 'w')
skip = 0
-for line in open('../src/include/serial_funcs.i', 'r'):
+for line in open('../src/include/serial.i', 'r'):
if not skip:
tfile.write(line)
if line.count('Serialization function section: END'):
@@ -166,4 +166,4 @@ for line in open('../src/include/serial_funcs.i', 'r'):
tfile.write('/*\n')
tfile.close()
-compare_srcfile(tmp_file, '../src/include/serial_funcs.i')
+compare_srcfile(tmp_file, '../src/include/serial.i')