From b2c1fe2afb185176d2630cfbc7336caef47cb619 Mon Sep 17 00:00:00 2001 From: Jari Sundell Date: Wed, 30 Nov 2011 19:34:29 +0900 Subject: [PATCH] Fixed stray comma in script causing invalid LT_SMP_CACHE_BYTES value to be set. --- scripts/common.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/common.m4 b/scripts/common.m4 index dc482c59..80bc090f 100644 --- a/scripts/common.m4 +++ b/scripts/common.m4 @@ -212,11 +212,11 @@ dnl AC_DEFINE(lt_cacheline_aligned, __cacheline_aligned, LibTorrent defined dnl Need to fix this so that it uses the stuff defined by the system. - AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of, should work on all archs.) + AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of should work on all archs.) AC_DEFINE(lt_cacheline_aligned, __attribute__((__aligned__(LT_SMP_CACHE_BYTES))), LibTorrent defined cacheline aligned.) ], [ AC_MSG_RESULT(using default 128 bytes) - AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of, should work on all archs.) + AC_DEFINE(LT_SMP_CACHE_BYTES, 128, Largest L1 cache size we know of should work on all archs.) AC_DEFINE(lt_cacheline_aligned, __attribute__((__aligned__(LT_SMP_CACHE_BYTES))), LibTorrent defined cacheline aligned.) ]) ])