install_mod_path was accidentally removed in 1774
Derek Kozel <[email protected]>
| Newsgroups | gmane.linux.hardware.gpib.general |
|---|---|
| Message-ID | <[email protected]> |
Hello, Attached is a patch to restore the INSTALL_MOD_PATH argument to modules_install in the kernel modules Makefile. It looks like this argument was accidentally removed during the rework in r1774. This argument is needed to be able to build a Debian package. Regards, Derek _______________________________________________ Linux-gpib-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/linux-gpib-general
restore_install_mod_path.patch
(text/x-patch, 425 B)
Index: linux-gpib-kernel/Makefile =================================================================== --- linux-gpib-kernel/Makefile (revision 1810) +++ linux-gpib-kernel/Makefile (working copy) @@ -20,4 +20,5 @@ $(MAKE) -C $(LINUX_SRCDIR) V=$(VERBOSE) modules_install\ M="$(GPIB_SRCDIR)/drivers/gpib" \ GPIB_TOP_DIR=$(GPIB_SRCDIR) \ - INSTALL_MOD_DIR=gpib + INSTALL_MOD_DIR=gpib \ + INSTALL_MOD_PATH="$(DESTDIR)"