From 408d1e24cd9156f4e8097c7dc0fecbe0ab72d30a Mon Sep 17 00:00:00 2001 From: Bernd Porr Date: Sat, 28 Apr 2007 00:24:42 +0000 Subject: [PATCH] Used AC_ARG_WITH for udev as suggested by frank. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3b342f6..635ab96 100644 --- a/configure.ac +++ b/configure.ac @@ -125,8 +125,8 @@ AC_SUBST(pcmciadir) # new udev hotplug -AC_ARG_ENABLE([udev-hotplug], [ --enable-udev-hotplug=[[/lib]] enable udev hotplug], - [ENABLE_UDEVHOTPLUG=$enableval], [ENABLE_UDEVHOTPLUG="no"]) +AC_ARG_WITH([udev-hotplug], [ --with-udev-hotplug=[[/lib]] enable udev hotplug], + [ENABLE_UDEVHOTPLUG=$withval], [ENABLE_UDEVHOTPLUG="no"]) AM_CONDITIONAL(INSTALL_UDEVHOTPLUG, [test "$ENABLE_UDEVHOTPLUG" != "no"]) if test "$ENABLE_UDEVHOTPLUG" != "no"; then udevrulesdir="\${sysconfdir}/udev/rules.d/"