Fixes an error during module-assistant build step:
install: cannot stat `openvswitch/datapath/linux/*_mod.ko': No such
file or directory
This was (understandably) overlooked as part of commit 9b80f761be
(datapath: omit _mod from module names).
CC: Chris Wright <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
---
debian/rules.modules | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/debian/rules.modules b/debian/rules.modules
index eb779c4..64f4cd4 100755
--- a/debian/rules.modules
+++ b/debian/rules.modules
@@ -29,7 +29,7 @@ binary-modules: prep-deb-files
cd openvswitch && ./configure --with-linux=$(KSRC)
$(DATAPATH_CONFIGURE_OPTS) --with-build-number=$(BUILD_NUMBER)
cd openvswitch && $(MAKE) -C datapath/linux
install -d -m755 $(DSTDIR)
- install -m644 openvswitch/datapath/linux/*_mod.ko $(DSTDIR)/
+ install -m644 openvswitch/datapath/linux/*.ko $(DSTDIR)/
dh_installmodules
dh_installdocs
dh_installchangelogs
--
1.7.2.5
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev