summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-08-25 13:53:14 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-08-25 13:53:14 +0000
commitca5d9fb74ab3fc74c5ea74cfb320eb1f33ae8d8d (patch)
tree968e141a25c2f1019d3acd178ff0219dac6d348a /Makefile
parentb7fec825febefd3c7dd2e82539da45f1ec9415e7 (diff)
downloadcoreboot-ca5d9fb74ab3fc74c5ea74cfb320eb1f33ae8d8d.tar.gz
coreboot-ca5d9fb74ab3fc74c5ea74cfb320eb1f33ae8d8d.tar.bz2
coreboot-ca5d9fb74ab3fc74c5ea74cfb320eb1f33ae8d8d.zip
Properly check for the LZMA compression variable, and fix a print
message for the VGA ROM that would print a useless NULL string. Signed-off by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4573 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef20d1a2890b..e937e7c39b39 100644
--- a/Makefile
+++ b/Makefile
@@ -232,7 +232,7 @@ CFLAGS += -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow
CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
CBFS_COMPRESS_FLAG:=
-ifeq "$(CONFIG_COMPRESSED_PAYLOAD_LZMA)" "1"
+ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
CBFS_COMPRESS_FLAG:=l
endif