summaryrefslogtreecommitdiff
path: root/source4/heimdal_build/wscript_build
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-14 16:23:45 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-14 16:23:45 +1100
commitf1f5a23400df03e209fb66848eeef14b75e31a42 (patch)
tree5f98dbd395e0478a47326451ab277692072d38af /source4/heimdal_build/wscript_build
parent40a6e019fdb9ed3d736883b7ba349a976f215208 (diff)
downloadsamba-f1f5a23400df03e209fb66848eeef14b75e31a42.tar.gz
samba-f1f5a23400df03e209fb66848eeef14b75e31a42.tar.bz2
samba-f1f5a23400df03e209fb66848eeef14b75e31a42.zip
s4-heimdal: fixed some trailing commas in heimdal build
Diffstat (limited to 'source4/heimdal_build/wscript_build')
-rw-r--r--source4/heimdal_build/wscript_build6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build
index 3f779f128e..ac6575ad0f 100644
--- a/source4/heimdal_build/wscript_build
+++ b/source4/heimdal_build/wscript_build
@@ -59,8 +59,8 @@ def HEIMDAL_ASN1(name, source,
t.env.OPTION_FILE = "--option-file=%s" % os.path.normpath(os.path.join(bld.curdir, option_file))
cfile = out_files[0][0:-2] + '.c'
- hfile = out_files[1][0:-3] + '.h',
- hpriv = out_files[2][0:-3] + '.h',
+ hfile = out_files[1][0:-3] + '.h'
+ hpriv = out_files[2][0:-3] + '.h'
# now generate a .c file from the .x file
t = bld(rule='''( echo '#include "config.h"' && cat ${SRC} ) > ${TGT}''',
@@ -68,7 +68,7 @@ def HEIMDAL_ASN1(name, source,
target = cfile,
shell = True,
on_results=True,
- ext_out = '.c',
+ ext_out = '.c',
ext_in = '.x',
depends_on = name + '_ASN1',
name = name + '_C')