Package: madfuload / 1.2-4.2

configure.ac.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Minimal patch to configure.ac so that it calls
'udevadm --version' to obtain the version number. Upstream is out of date.
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,7 @@
 AC_PROG_CC
 
 AC_MSG_CHECKING([for udev version])
-udev_ver=`udevinfo -V | awk '{ print $3 }'`
+udev_ver=`udevadm --version`
 if test -n "$udev_ver"; then
   AC_MSG_RESULT([$udev_ver])
 else