summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2015-09-24 19:00:47 +0200
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2015-09-24 17:08:20 +0000
commit34ce438e6fc6ccab926141e462216e0430097507 (patch)
tree0bd4ab445d9bef3ecf67f35ec950fe073e3c16ed /util
parent9796f60c62f57ac512f225809c10b5b09ef80f5a (diff)
downloadcoreboot-34ce438e6fc6ccab926141e462216e0430097507.tar.gz
coreboot-34ce438e6fc6ccab926141e462216e0430097507.tar.bz2
coreboot-34ce438e6fc6ccab926141e462216e0430097507.zip
cbfstool: Proper commonlib include path with no dependency on $(src)
$(src) is not defined when building directly from the cbfs directory (that is, when building cbfs as standalone, running make in the cbfs directory), so we need to define the path to the commonlib include path relative to $(top). Change-Id: I72e80b030d4a156ec653ded5ab1457b16f612526 Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Reviewed-on: http://review.coreboot.org/11706 Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc
index 0938ea9e677b..a1dbfc3efc33 100644
--- a/util/cbfstool/Makefile.inc
+++ b/util/cbfstool/Makefile.inc
@@ -50,7 +50,7 @@ TOOLCPPFLAGS += -D_XOPEN_SOURCE=700 # strdup() from string.h
TOOLCPPFLAGS += -I$(top)/util/cbfstool/flashmap
TOOLCPPFLAGS += -I$(top)/util/cbfstool
TOOLCPPFLAGS += -I$(objutil)/cbfstool
-TOOLCPPFLAGS += -I$(src)/commonlib/include
+TOOLCPPFLAGS += -I$(top)/src/commonlib/include
TOOLLDFLAGS ?=
ifeq ($(shell uname -s | cut -c-7 2>/dev/null), MINGW32)