aboutsummaryrefslogtreecommitdiff
path: root/util/intelmetool/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/intelmetool/Makefile')
-rw-r--r--util/intelmetool/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/intelmetool/Makefile b/util/intelmetool/Makefile
index 4461f8615b..affcf30d90 100644
--- a/util/intelmetool/Makefile
+++ b/util/intelmetool/Makefile
@@ -70,11 +70,12 @@ endef
export LIBPCI_TEST
pciutils:
- @printf "\nChecking for pciutils and zlib... "
+ @printf "\nChecking for development libraries: pci and zlib... "
@echo "$$LIBPCI_TEST" > .test.c
@$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) >/dev/null 2>&1 && \
printf "found.\n" || ( printf "not found.\n\n"; \
- printf "Please install pciutils-devel and zlib-devel.\n"; \
+ printf "For RPM based distributions like Fedora, please install pciutils-devel and zlib-devel.\n"; \
+ printf "For DEB based distributions, please install libpci-dev and zlib1g-dev.\n"; \
rm -f .test.c .test; exit 1)
@rm -rf .test.c .test .test.dSYM