aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-05-01 16:37:18 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2012-05-02 20:00:27 +0200
commitcafedcf5c8161f0d427293ecacbf3a9e918e41f3 (patch)
tree0954d7c28aeb3f9322f22591ed931697e44ed27b /src
parent7a3f36a228eeb30acb9f3adde2798e9f401849d2 (diff)
Strip quotes from Sandybridge MRC blob
This fixes my build when specifying an absolute path to the binary. Change-Id: I95fb3960be70f78146c6afeb9cc777dccdca6b5b Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/987 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/intel/sandybridge/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/intel/sandybridge/Makefile.inc b/src/northbridge/intel/sandybridge/Makefile.inc
index 79aa6ea42c..87a0b2efef 100644
--- a/src/northbridge/intel/sandybridge/Makefile.inc
+++ b/src/northbridge/intel/sandybridge/Makefile.inc
@@ -33,7 +33,7 @@ smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
# We don't ship that, but booting without it is bound to fail
cbfs-files-$(CONFIG_HAVE_MRC) += mrc.bin
-mrc.bin-file := $(CONFIG_MRC_FILE)
+mrc.bin-file := $(call strip_quotes,$(CONFIG_MRC_FILE))
ifeq ($(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDGE),y)
mrc.bin-position := 0xfffa0000
endif