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 <chr...@sous-sol.org>
Signed-off-by: Ben Pfaff <b...@nicira.com>
---
 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
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev

Reply via email to