tags 806656 + patch
thanks

> dh_install
> Set execute flag to chattr-lilo hook scripts
> chmod 0755 debian/lilo/usr/lib/lilo/hooks/kernel/*/chattr-lilo
> chmod: cannot access 'debian/lilo/usr/lib/lilo/hooks/kernel/*/chattr-lilo': 
> No such file or directory
> debian/rules:20: recipe for target 'override_dh_install' failed

Explanation: We are creating arch-independent packages, so debian/lilo/[...]
does not exist because lilo is arch-dependent.

Trivial patch attached.

Thanks.
--- a/debian/rules
+++ b/debian/rules
@@ -16,8 +16,8 @@ override_dh_auto_build:
        uudecode -o /dev/stdout debian/doc/tech.html.uu 2>/dev/null | tar -x -z 
-C debian
        uudecode -o /dev/stdout debian/doc/user.html.uu 2>/dev/null | tar -x -z 
-C debian
 
-override_dh_install:
-       dh_install
+override_dh_fixperms-arch:
+       dh_fixperms
        @echo "Set execute flag to chattr-lilo hook scripts"
        chmod 0755 debian/lilo/usr/lib/lilo/hooks/kernel/*/chattr-lilo
 

Reply via email to