From 393d9322ba51feeea33cd08f77945f593cb70e32 Mon Sep 17 00:00:00 2001 From: Andrey Korolyov Date: Tue, 5 Jan 2016 14:27:59 +0300 Subject: ectool: fix NetBSD compilation Since NetBSD does not support uname -o, push check for CygWin inside separate non-failing condition in Makefile. Change-Id: Ibd264384f49b33412f0ef8554bd9c9fb8f60a892 Signed-off-by: Andrey Korolyov Reviewed-on: https://review.coreboot.org/12831 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/ectool/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'util/ectool/Makefile') diff --git a/util/ectool/Makefile b/util/ectool/Makefile index a869577da6..8aa1415a56 100644 --- a/util/ectool/Makefile +++ b/util/ectool/Makefile @@ -19,12 +19,16 @@ CFLAGS = -O2 -Wall -W PROGRAM = ectool INSTALL = /usr/bin/install PREFIX = /usr/local +OS_ARCH = $(shell uname) -OS_ARCH = $(shell uname -o) -ifeq ($(OS_ARCH), Cygwin) +ifeq ($(shell uname -o 2>/dev/null), Cygwin) LDFLAGS = -lioperm endif +ifeq ($(OS_ARCH), NetBSD) +LDFLAGS = -l$(shell uname -p) +endif + all: $(PROGRAM) $(PROGRAM): ec.o ectool.o -- cgit v1.2.3