From 87adbc377b0f95b283e11e387e56afe5f9253581 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 28 Aug 2008 22:44:49 +0000 Subject: [PATCH] small dependency fix, plus make oldconfig & co need libintl, too :) (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://coreboot.org/repository/coreboot-v3@842 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- device/Makefile | 3 +++ util/kconfig/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/device/Makefile b/device/Makefile index 88f1ada8ac..c1ad401eaa 100644 --- a/device/Makefile +++ b/device/Makefile @@ -32,3 +32,6 @@ STAGE2_DEVICE_SRC = device.c device_util.c root_device.c \ ifeq ($(CONFIG_NORTHBRIDGE_AMD_K8),y) STAGE2_DEVICE_SRC += hypertransport.c endif + + +$(obj)/device/pci_device.o: $(src)/device/pci_device.c $(obj)/statictree.h diff --git a/util/kconfig/Makefile b/util/kconfig/Makefile index a7c712e9f4..a57a73bdf8 100644 --- a/util/kconfig/Makefile +++ b/util/kconfig/Makefile @@ -106,7 +106,7 @@ $(obj)/util/kconfig/mconf: $(patsubst %,$(obj)/util/kconfig/%,$(mconf-objects)) $(obj)/util/kconfig/conf: $(patsubst %,$(obj)/util/kconfig/%,$(conf-objects)) $(Q)printf " HOSTCC $(subst $(shell pwd)/,,$(@))\n" - $(Q)$(HOSTCC) -o $@ $^ $(CURSESLIBS) + $(Q)$(HOSTCC) -o $@ $^ $(CURSESLIBS) $(INTLLIBS) $(obj)/util/kconfig/qconf: $(patsubst %,$(obj)/util/kconfig/%,$(qconf-objects)) $(Q)printf " HOSTCXX $(subst $(shell pwd)/,,$(@))\n"