From f8d8ebbd6167caa05d93dbf70b7ed7e69563fbc7 Mon Sep 17 00:00:00 2001 From: Clemens Ladisch Date: Mon, 9 Oct 2006 08:44:13 +0200 Subject: [PATCH] configure: remove superfluous slash at end of path The slash at the end of the detected hotplug firmware directory is not needed because all makefiles use correct delimiters. --- configure.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 22a33d5..fca422e 100644 --- a/configure.in +++ b/configure.in @@ -33,13 +33,13 @@ AC_MSG_CHECKING(firmware installation directory) # where to put the firmware. If none of these is right, can specify where # --with-hotplug-dir if test -d /lib/firmware ; then - detected_fwdir="/lib/firmware/" + detected_fwdir="/lib/firmware" elif test -d /lib/hotplug/firmware ; then - detected_fwdir="/lib/hotplug/firmware/" + detected_fwdir="/lib/hotplug/firmware" elif test -d /usr/lib/hotplug/firmware ; then - detected_fwdir="/usr/lib/hotplug/firmware/" + detected_fwdir="/usr/lib/hotplug/firmware" else - detected_fwdir="/lib/firmware/" + detected_fwdir="/lib/firmware" fi AC_ARG_WITH(hotplug-dir, -- 2.47.1