From f1f5a23400df03e209fb66848eeef14b75e31a42 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 14 Oct 2010 16:23:45 +1100 Subject: s4-heimdal: fixed some trailing commas in heimdal build --- source4/heimdal_build/wscript_build | 6 +++--- 1 file 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') -- cgit