Author: hailfinger Date: 2008-08-17 18:56:21 +0200 (Sun, 17 Aug 2008) New Revision: 779
Modified: coreboot-v3/lib/Makefile Log: Fixed typo in r778. Signed-off-by: Carl-Daniel Hailfinger <[EMAIL PROTECTED]> Acked-by: Carl-Daniel Hailfinger <[EMAIL PROTECTED]> Modified: coreboot-v3/lib/Makefile =================================================================== --- coreboot-v3/lib/Makefile 2008-08-17 14:21:50 UTC (rev 778) +++ coreboot-v3/lib/Makefile 2008-08-17 16:56:21 UTC (rev 779) @@ -21,10 +21,10 @@ DECOMPRESSORS := ifeq ($(CONFIG_COMPRESSION_LZMA),y) -DECOMPRESSORS += lzma.c +DECOMPRESSORS += lzma.o endif ifeq ($(CONFIG_COMPRESSION_NRV2B),y) -DECOMPRESSORS += nrv2b.c +DECOMPRESSORS += nrv2b.o endif # -- coreboot mailing list [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

