From 46bd5d92ac8066af5ef6d576cc31280435b4b293 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 10 Feb 2012 11:00:54 -0800 Subject: [PATCH] debian: Fix dependencies for openvswitch-datapath-dkms package. The OVS kernel module, like other kernel modules, does not need a working userspace build environment, but the OVS "configure" script and makefiles don't support a kernel-only build, so "configure" fails if libc6-dev is not installed. It would be better to change the "configure" script and makefiles to handle this special case, but that was more work than I initially expected it to be. Bug #8606. Reported-by: Edwin Chiu Signed-off-by: Ben Pfaff --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 4f714652e..09a26b1d6 100644 --- a/debian/control +++ b/debian/control @@ -25,7 +25,7 @@ Description: Open vSwitch datapath module source - module-assistant version Package: openvswitch-datapath-dkms Architecture: all -Depends: dkms (>= 1.95), make, ${misc:Depends} +Depends: dkms (>= 1.95), make, libc6-dev, ${misc:Depends} Description: Open vSwitch datapath module source - DKMS version This package provides the Open vSwitch datapath module source code that is needed by openvswitch-switch. DKMS can built the kernel -- 2.43.0