** Changed in: kernel-wedge (Ubuntu)
Assignee: Colin Watson (cjwatson) => (unassigned)
** Changed in: kernel-wedge (Ubuntu)
Milestone: later => None
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/b
** Changed in: kernel-wedge (Ubuntu)
Status: New => Triaged
** Changed in: kernel-wedge (Ubuntu)
Assignee: (unassigned) => Colin Watson (cjwatson)
--
fix kernel-wedge to accept all modules as optional
https://bugs.launchpad.net/bugs/570625
You received this bug notification because y
We would need to ensure that the udeb is omitted (rather than generated
but empty) and that any dependencies on it are filtered out. Or
something like that.
--
fix kernel-wedge to accept all modules as optional
https://bugs.launchpad.net/bugs/570625
You received this bug notification because you
I think the offending code is in commands/check:
#!/bin/sh -e
empty=
for pkg in $(dh_listpackages -s | grep -- '-di$'); do
if [ -z "$(find debian/$pkg -type f)" ]; then
echo "$pkg will be empty" >&2
empty=1
fi
done
if [ "$empty" ]; then
exit