summaryrefslogtreecommitdiff
path: root/src/cpu/intel/fsp_model_206ax
diff options
context:
space:
mode:
authorMartin Roth <gaumless@gmail.com>2014-05-19 15:28:00 -0600
committerMartin Roth <gaumless@gmail.com>2014-05-30 23:52:17 +0200
commitae6e0c6bebc45f4c0b21a68e636a0d87b78db9cb (patch)
tree9cbd056f7aa983a669385578646ab5cd8a2c46d9 /src/cpu/intel/fsp_model_206ax
parentd75800c7f2476bee243cc22255acb54d6676d4bc (diff)
downloadcoreboot-ae6e0c6bebc45f4c0b21a68e636a0d87b78db9cb.tar.xz
cpu/intel/fsp_model_206ax: change realpath to readlink
realpath and readlink can be used to do the same thing - in this case we're turning path1/path2/../path3/path4 into path1/path3/path4 so that the makefile's wildcard routine can evaluate it. Debian derivatives don't seem to include realpath. (and even when it's installed, it's not the gnu coreutils version.) Change-Id: I0a80a1d9b563810bdf96aea9d5de79ce1cea457a Signed-off-by: Martin Roth <gaumless@gmail.com> Reviewed-on: http://review.coreboot.org/5793 Reviewed-by: Marc Jones <marc.jones@se-eng.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/intel/fsp_model_206ax')
-rw-r--r--src/cpu/intel/fsp_model_206ax/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/intel/fsp_model_206ax/Makefile.inc b/src/cpu/intel/fsp_model_206ax/Makefile.inc
index c6d7339b79..cb7f2a8636 100644
--- a/src/cpu/intel/fsp_model_206ax/Makefile.inc
+++ b/src/cpu/intel/fsp_model_206ax/Makefile.inc
@@ -8,7 +8,7 @@ smm-$(CONFIG_HAVE_SMI_HANDLER) += finalize.c
cpu_microcode-$(CONFIG_CPU_MICROCODE_CBFS_GENERATE) += microcode_blob.c
ifneq ($(CONFIG_MICROCODE_INCLUDE_PATH),)
-ifneq ($(wildcard $(shell realpath -L "$(top)/$(CONFIG_MICROCODE_INCLUDE_PATH)")),)
+ifneq ($(wildcard $(shell readlink -f "$(top)/$(CONFIG_MICROCODE_INCLUDE_PATH)")),)
CPPFLAGS_common += -I$(CONFIG_MICROCODE_INCLUDE_PATH)
endif
endif