Author: stepan Date: 2008-08-29 00:44:49 +0200 (Fri, 29 Aug 2008) New Revision: 842
Modified: coreboot-v3/device/Makefile coreboot-v3/util/kconfig/Makefile Log: small dependency fix, plus make oldconfig & co need libintl, too :) (trivial)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: coreboot-v3/device/Makefile =================================================================== --- coreboot-v3/device/Makefile 2008-08-28 17:14:04 UTC (rev 841) +++ coreboot-v3/device/Makefile 2008-08-28 22:44:49 UTC (rev 842) @@ -32,3 +32,6 @@ 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
Modified: coreboot-v3/util/kconfig/Makefile =================================================================== --- coreboot-v3/util/kconfig/Makefile 2008-08-28 17:14:04 UTC (rev 841) +++ coreboot-v3/util/kconfig/Makefile 2008-08-28 22:44:49 UTC (rev 842) @@ -106,7 +106,7 @@
$(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"