From: Thomas Nagy Date: Tue, 29 Aug 2017 18:54:43 +0000 (+0200) Subject: build:wafsamba: Remove unnecessary parameters to cmd_and_log X-Git-Tag: tdb-1.3.17~1854 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=faef27506977db01cc4619140a71652463914378;p=thirdparty%2Fsamba.git build:wafsamba: Remove unnecessary parameters to cmd_and_log Signed-off-by: Thomas Nagy Reviewed-by: Alexander Bokovoy Reviewed-by: Andrew Bartlett --- diff --git a/wscript_configure_system_mitkrb5 b/wscript_configure_system_mitkrb5 index facf415e308..425e3a57166 100644 --- a/wscript_configure_system_mitkrb5 +++ b/wscript_configure_system_mitkrb5 @@ -53,12 +53,12 @@ if conf.env.KRB5_CONFIG: if 'gssapi_krb5' in conf.env['LIB_GSSAPI']: krb5_define_syslib(conf, "gssapi_krb5", conf.env['LIB_GSSAPI']) - vendor = conf.cmd_and_log("%(path)s --vendor" % dict(path=conf.env.KRB5_CONFIG), dict()) + vendor = conf.cmd_and_log("%(path)s --vendor" % dict(path=conf.env.KRB5_CONFIG) conf.env.KRB5_VENDOR = vendor.strip().lower() if conf.env.KRB5_VENDOR != 'heimdal': conf.define('USING_SYSTEM_KRB5', 1) del conf.env.HEIMDAL_KRB5_CONFIG - krb5_conf_version = conf.cmd_and_log("%(path)s --version" % dict(path=conf.env.KRB5_CONFIG), dict()).strip() + krb5_conf_version = conf.cmd_and_log("%(path)s --version" % dict(path=conf.env.KRB5_CONFIG)).strip() krb5_version = krb5_conf_version.split()[-1]