From 229b900438e0b6a0928e7d95b485f45ab746dce3 Mon Sep 17 00:00:00 2001 From: Chris Luke Date: Sun, 22 Dec 2013 14:43:33 -0800 Subject: [PATCH] datapath: bug.h missing from distfiles commit 7c359202 introduced datapath/linux/compat/include/bug.h but did not include it in datapath/linux/Modules.mk, which results in the following build error: > The distribution is missing the following files: > datapath/linux/compat/include/linux/bug.h Signed-off-by: Chris Luke Signed-off-by: Jesse Gross --- datapath/linux/Modules.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/datapath/linux/Modules.mk b/datapath/linux/Modules.mk index 2f4a9c223..cedb8c92d 100644 --- a/datapath/linux/Modules.mk +++ b/datapath/linux/Modules.mk @@ -19,6 +19,7 @@ openvswitch_headers += \ linux/compat/gso.h \ linux/compat/include/asm/hash.h \ linux/compat/include/asm/percpu.h \ + linux/compat/include/linux/bug.h \ linux/compat/include/linux/compiler.h \ linux/compat/include/linux/compiler-gcc.h \ linux/compat/include/linux/cpumask.h \ -- 2.20.1