From b13e94c2c654bdf71ade141475f1e9f343979be2 Mon Sep 17 00:00:00 2001 From: Zheng Bao Date: Fri, 28 Sep 2012 16:02:35 +0800 Subject: nvramtool: uname in NetBSD doesnt take "-o" see the Netbsd manual: http://netbsd.gw.com/cgi-bin/man-cgi?uname++NetBSD-current Error output needs to be redirected. Change-Id: I1853a0162e14be0ee9d7971466499af6c72b2427 Signed-off-by: Zheng Bao Signed-off-by: Zheng Bao Reviewed-on: http://review.coreboot.org/1545 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/nvramtool/Makefile | 2 +- util/nvramtool/Makefile.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/nvramtool/Makefile b/util/nvramtool/Makefile index 6723a487bf..fe2efa0164 100644 --- a/util/nvramtool/Makefile +++ b/util/nvramtool/Makefile @@ -42,7 +42,7 @@ endif ifeq ($(OS_ARCH), NetBSD) LDFLAGS = -l$(shell uname -p) endif -ifeq ($(shell uname -o), Cygwin) +ifeq ($(shell uname -o 2>/dev/null), Cygwin) LDFLAGS = -lioperm CFLAGS += -D__GLIBC__ endif diff --git a/util/nvramtool/Makefile.inc b/util/nvramtool/Makefile.inc index 67710da52a..8471b66cbc 100644 --- a/util/nvramtool/Makefile.inc +++ b/util/nvramtool/Makefile.inc @@ -24,7 +24,7 @@ NVRAMTOOLFLAGS := -I$(top)/util/nvramtool ifeq ($(OS_ARCH), NetBSD) NVRAMTOOLLDLFLAGS = -l$(shell uname -p) endif -ifeq ($(shell uname -o), Cygwin) +ifeq ($(shell uname -o 2>/dev/null), Cygwin) NVRAMTOOLFLAGS += -O2 -g -Wall -W -D__GLIBC__ HOSTCFLAGS = endif -- cgit v1.2.3