From: Justin Clift Date: Tue, 7 Dec 2010 23:01:03 +0000 (+1100) Subject: configure: improve misleading libnl missing error message X-Git-Tag: v0.8.7~138 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b113d279eedfca2f65d680dfc587443b339af6b8;p=thirdparty%2Flibvirt.git configure: improve misleading libnl missing error message This fixes a misleading error message saying the libnl package needs to be installed, when it's really the libnl-devel package needing to be installed. --- diff --git a/configure.ac b/configure.ac index d26bc68b29..dde2cdeea7 100644 --- a/configure.ac +++ b/configure.ac @@ -2215,7 +2215,7 @@ LIBNL_LIBS="" if test "$with_macvtap" = "yes"; then PKG_CHECK_MODULES([LIBNL], [libnl-1 >= $LIBNL_REQUIRED], [ ], [ - AC_MSG_ERROR([libnl >= $LIBNL_REQUIRED is required for macvtap support]) + AC_MSG_ERROR([libnl-devel >= $LIBNL_REQUIRED is required for macvtap support]) ]) fi