Package: sudo Version: 1.8.3p1-2 Severity: minor Tags: upstream patch Hello!
While working on an unrelated problem, I had to regenerate configure with autoconf. The following output is produced when I try to do this: $ autoconf /usr/bin/m4:aclocal.m4:373: cannot open `libtool.m4': No such file or directory /usr/bin/m4:aclocal.m4:374: cannot open `ltoptions.m4': No such file or directory /usr/bin/m4:aclocal.m4:375: cannot open `ltsugar.m4': No such file or directory /usr/bin/m4:aclocal.m4:376: cannot open `ltversion.m4': No such file or directory /usr/bin/m4:aclocal.m4:377: cannot open `lt~obsolete.m4': No such file or directory autom4te: /usr/bin/m4 failed with exit status: 1 These files exist in the directory m4/, rather than in the top-level directory of the tarball. The attached quilt patch corrects these paths to allow autoconf to work as normal. Please let me know if you need any further information. -- System Information: Debian Release: wheezy/sid Architecture: hurd-i386 (i686-AT386) Kernel: GNU-Mach 1.3.99/Hurd-0.3 Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages sudo depends on: ii libc0.3 2.13-24 ii libpam-modules 1.1.3-6 ii libpam0g 1.1.3-6 sudo recommends no packages. sudo suggests no packages. -- Configuration Files: /etc/sudoers [Errno 1073741837] Permission denied: u'/etc/sudoers' /etc/sudoers.d/README [Errno 1073741837] Permission denied: u'/etc/sudoers.d/README' -- no debconf information
Include correct paths in aclocal.m4 Index: sudo-1.8.3p1/aclocal.m4 =================================================================== --- sudo-1.8.3p1.orig/aclocal.m4 2012-01-08 05:28:14.000000000 +0000 +++ sudo-1.8.3p1/aclocal.m4 2012-01-08 05:29:07.000000000 +0000 @@ -370,8 +370,8 @@ dnl dnl Pull in libtool macros dnl -m4_include([libtool.m4]) -m4_include([ltoptions.m4]) -m4_include([ltsugar.m4]) -m4_include([ltversion.m4]) -m4_include([lt~obsolete.m4]) +m4_include([m4/libtool.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4])