diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-12-12 17:46:02 +0100 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2024-12-12 18:18:23 +0100 |
commit | 77dbd57b8e9dad16375ba7a249b8046dd66d1c46 (patch) | |
tree | ec5ddb7ef8c8cfdd3307c26cd7352085b2d011fd /emulators/open-vm-tools/files/patch-modules_Makefile.am | |
parent | science/PETSc: Correction (diff) |
emulators/open-vm-{tools,kmod}: split the package
Split the package to build the kmods separatly! Building separately has
multiple benefits:
1. it allows user to rebuild when they upgrade their kernel without
rebuilding all of the tools which can take a long time.
2. it allows us to provide the modules in the new kmods package
repository
3. it installs the kmods the in the same place as the regular kmods:
/boot/modules
It means we can probably get rid of the rc script in favor if letting
users use kld_list mecanism but I will let this decision to the
maintainer based on what it probably best for users.
Approved by: garga (maintainer)
Reviewed by: garga (maintainer)
Differential Revision: https://reviews.freebsd.org/D48059
Diffstat (limited to 'emulators/open-vm-tools/files/patch-modules_Makefile.am')
-rw-r--r-- | emulators/open-vm-tools/files/patch-modules_Makefile.am | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/emulators/open-vm-tools/files/patch-modules_Makefile.am b/emulators/open-vm-tools/files/patch-modules_Makefile.am deleted file mode 100644 index b53fda2dc938..000000000000 --- a/emulators/open-vm-tools/files/patch-modules_Makefile.am +++ /dev/null @@ -1,19 +0,0 @@ ---- modules/Makefile.am.orig 2018-09-29 03:57:04 UTC -+++ modules/Makefile.am -@@ -65,11 +65,11 @@ if SOLARIS - done - endif - if FREEBSD -- for MOD in $(MODULES); do \ -- $(INSTALL) -d $(DESTDIR)$(MODULES_DIR); \ -- $(INSTALL) -m 644 $(modulesrc)/$(MODULES_OS)/$$MOD.ko \ -- $(DESTDIR)$(MODULES_DIR); \ -- done -+# for MOD in $(MODULES); do \ -+# $(INSTALL) -d $(DESTDIR)$(MODULES_DIR); \ -+# $(INSTALL) -m 644 $(modulesrc)/$(MODULES_OS)/$$MOD.ko \ -+# $(DESTDIR)$(MODULES_DIR); \ -+# done - endif - - uninstall-hook: |