mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 10:24:49 +00:00
tools: kwboot: use pkg-config to get -ltinfo
Instead of hardcoding -ltinfo as the flags needed to build kwboot, use pkg-config when available. We gracefully fallback on the previous behavior of hardcoding -ltinfo if pkg-config is not available or fails with an error. Reviewed-by: Pali Rohár <pali@kernel.org> Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
This commit is contained in:
parent
31a7688cbe
commit
124b21e7bd
1 changed files with 3 additions and 1 deletions
|
@ -198,7 +198,9 @@ hostprogs-$(CONFIG_EXYNOS5420) += mkexynosspl
|
|||
HOSTCFLAGS_mkexynosspl.o := -pedantic
|
||||
|
||||
HOSTCFLAGS_kwboot.o += -pthread
|
||||
HOSTLDLIBS_kwboot += -pthread -ltinfo
|
||||
HOSTLDLIBS_kwboot += -pthread
|
||||
HOSTLDLIBS_kwboot += \
|
||||
$(shell pkg-config --libs tinfo 2> /dev/null || echo "-ltinfo")
|
||||
|
||||
ifdtool-objs := $(LIBFDT_OBJS) ifdtool.o
|
||||
hostprogs-$(CONFIG_X86) += ifdtool
|
||||
|
|
Loading…
Add table
Reference in a new issue