From: Ben Pfaff Date: Fri, 9 Mar 2012 21:31:41 +0000 (-0800) Subject: debian: Fix Debian build of modules via module-assistant. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05d4ae3a0608d46ae6df7c2015af9e6b9aa861ad;p=openvswitch debian: Fix Debian build of modules via module-assistant. 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). Acked-by: Chris Wright Signed-off-by: Ben Pfaff --- diff --git a/debian/rules.modules b/debian/rules.modules index eb779c45..64f4cd42 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