From: Clemens Ladisch Date: Mon, 9 Oct 2006 06:44:13 +0000 (+0200) Subject: configure: remove superfluous slash at end of path X-Git-Tag: v1.0.14rc1~4 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=f8d8ebbd6167caa05d93dbf70b7ed7e69563fbc7;p=alsa-firmware.git 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. --- 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,