]> git.alsa-project.org Git - alsa-firmware.git/commitdiff
configure: remove superfluous slash at end of path
authorClemens Ladisch <clemens@ladisch.de>
Mon, 9 Oct 2006 06:44:13 +0000 (08:44 +0200)
committerClemens Ladisch <clemens@ladisch.de>
Mon, 9 Oct 2006 06:44:13 +0000 (08:44 +0200)
The slash at the end of the detected hotplug firmware directory is not
needed because all makefiles use correct delimiters.

configure.in

index 22a33d53d7a4a41575d07dc3d8a23e9e92f675de..fca422e4d5f49eff2490a6fa6640eb50aa3bf307 100644 (file)
@@ -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,