#!/usr/bin/perl -w =head1 NAME dh_di_kernel_install - install kernel udeb files =cut use strict; use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS B [S>] =head1 DESCRIPTION dh_di_kernel_install is a debhelper program that runs C and C to install files into package build directories for kernel udebs. It silently does nothing if the C file does not exist. =cut exit unless -f "kernel-versions"; doit("kernel-wedge", "install-files"); doit("kernel-wedge", "check"); =head1 SEE ALSO L, L This program is a part of dh-di. =head1 AUTHOR Colin Watson =cut