summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEd Swierk <eswierk@arastra.com>2007-02-16 14:36:12 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-02-16 14:36:12 +0000
commitc214b5446405a889b7e94a9c78417906956000d2 (patch)
tree29fb9b81d07a3f88e2017ad0c69a001df33c3e60 /Makefile
parentf10a9795656ade7b7f63f071dda82703aa72215e (diff)
downloadflashrom-c214b5446405a889b7e94a9c78417906956000d2.zip
flashrom-c214b5446405a889b7e94a9c78417906956000d2.tar.gz
Currently the flashrom Makefile tries to detect whether pciutils-devel is installed, but the test also fails if zlib-devel is missing
This patch changes the error message accordingly. Corresponding to flashrom svn r90 and coreboot v2 svn r2553. Signed-off-by: Ed Swierk <eswierk@arastra.com> Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 681dddd..a6b389f 100644
--- a/Makefile
+++ b/Makefile
@@ -41,14 +41,14 @@ dep:
@$(CC) -MM *.c > .dependencies
pciutils:
- @echo; echo -n "Checking for pciutils... "
+ @echo; echo -n "Checking for pciutils and zlib... "
@$(shell ( echo "#include <pci/pci.h>"; \
echo "struct pci_access *pacc;"; \
echo "int main(int argc, char **argv)"; \
echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
@$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) &>/dev/null && \
echo "found." || ( echo "not found."; echo; \
- echo "Please install pciutils and pciutils-devel."; \
+ echo "Please install pciutils-devel and zlib-devel."; \
echo "See README for more information."; echo; \
rm -f .test.c .test; exit 1)
@rm -f .test.c .test
OpenPOWER on IntegriCloud