From 40570d282806d1cffb5efe36d49babfd6d108146 Mon Sep 17 00:00:00 2001 From: thedbexp Date: Fri, 9 Dec 2011 13:53:49 -0600 Subject: [PATCH] strip leading/trailing whitespace -- at least I think this is the intent --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4038dcc..41eaf22 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ srcdir ?= $(prefix)/src machinetype = $(shell uname -m | \ sed -e 's/i.86/i386/' -e 's/mips.*/mips/' -e 's/ppc.*/powerpc/') -ifneq ($(filter x86_64 i386 ia64 mips powerpc,$(machinetype)),) +ifneq ($(strip $(filter x86_64 i386 ia64 mips powerpc,$(machinetype))),) NUMA := 1 endif