summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-06-11 11:33:34 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-06-11 11:33:34 +0200
commitb697fba4a5c5395a9db271efa286870191418040 (patch)
tree50c542f5736bb3df0a5bcf47bc93248788900b93 /Makefile
parent543a7c8e10e0dbc1af8207e4a30e439c4c66c473 (diff)
parent70e4e1e4f54ff8e4040b137a2b4d0f48baa74e0c (diff)
downloadbarebox-b697fba4a5c5395a9db271efa286870191418040.tar.gz
barebox-b697fba4a5c5395a9db271efa286870191418040.tar.xz
Merge branch 'for-next/macos'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9ef144aae5..d15d08a672 100644
--- a/Makefile
+++ b/Makefile
@@ -177,9 +177,9 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
else if [ -x /bin/bash ]; then echo /bin/bash; \
else echo sh; fi ; fi)
-HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS)
-HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS)
-HOST_LFS_LIBS := $(shell getconf LFS_LIBS)
+HOST_LFS_CFLAGS := $(shell getconf LFS_CFLAGS 2>/dev/null)
+HOST_LFS_LDFLAGS := $(shell getconf LFS_LDFLAGS 2>/dev/null)
+HOST_LFS_LIBS := $(shell getconf LFS_LIBS 2>/dev/null)
HOSTCC = gcc
HOSTCXX = g++