From: Andreas Schneider Date: Mon, 4 Dec 2017 10:00:10 +0000 (+0100) Subject: third_party: Fix a typo in the option name X-Git-Tag: talloc-2.1.11~278 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7e68958025937f97554cd956ca482dfe507f803;p=thirdparty%2Fsamba.git third_party: Fix a typo in the option name BUG: https://bugzilla.samba.org/show_bug.cgi?id=13174 Signed-off-by: Andreas Schneider Reviewed-by: Alexander Bokovoy --- diff --git a/third_party/aesni-intel/wscript b/third_party/aesni-intel/wscript index 0ccd9eb1e5b..f0723a52501 100644 --- a/third_party/aesni-intel/wscript +++ b/third_party/aesni-intel/wscript @@ -9,11 +9,11 @@ def configure(conf): print("Compiling with Intel AES instructions") conf.DEFINE('HAVE_AESNI_INTEL', 1) else: - raise Utils.WafError('--aes-accel=intelaesni selected and non x86_64 CPU') + raise Utils.WafError('--accel-aes=intelaesni selected and non x86_64 CPU') else: - raise Utils.WafError('--aes-accel=intelaesni selected and compiler rejects -Wp,-E,-lang-asm') + raise Utils.WafError('--accel-aes=intelaesni selected and compiler rejects -Wp,-E,-lang-asm') if not conf.CHECK_LDFLAGS('-Wl,-z,noexecstack'): - raise Utils.WafError('--aes-accel=intelaesni selected and linker rejects -z noexecstack') + raise Utils.WafError('--accel-aes=intelaesni selected and linker rejects -z noexecstack') def build(bld): if not bld.CONFIG_SET('HAVE_AESNI_INTEL'):