Changeset 3400 in vbox for trunk/src/VBox/Additions/linux/sharedfolders
- Timestamp:
- Jul 3, 2007 8:12:52 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22601
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/Makefile.module
r2981 r3400 63 63 64 64 # module install dir. 65 ifndef MODULE_DIR 66 MODULE_DIR_TST := /lib/modules/$(shell uname -r) 67 ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes) 68 MODULE_DIR := $(MODULE_DIR_TST)/misc 69 else 70 $(error Unable to find the folder to install the shared folders driver to) 71 endif 72 endif # MODULE_DIR unspecified 65 ifneq ($(filter install install_rpm,$(MAKECMDGOALS)),) 66 ifndef MODULE_DIR 67 MODULE_DIR_TST := /lib/modules/$(shell uname -r) 68 ifeq ($(shell if test -d $(MODULE_DIR_TST); then echo yes; fi),yes) 69 MODULE_DIR := $(MODULE_DIR_TST)/misc 70 else 71 $(error Unable to find the folder to install the shared folders driver to) 72 endif 73 endif # MODULE_DIR unspecified 74 endif 73 75 74 76 # guess kernel version (24 or 26)
Note:
See TracChangeset
for help on using the changeset viewer.