Changeset 21417 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Jul 9, 2009 8:01:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/Makefile
r21416 r21417 25 25 @echo "*** Building 'vboxguest' module ***" 26 26 @$(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxguest 27 @cp vboxguest/vboxguest.*o . 27 @if [ -f vboxguest/vboxguest.ko ]; then \ 28 cp vboxguest/vboxguest.ko .; \ 29 else \ 30 cp vboxguest/vboxguest.o .; \ 31 fi 28 32 @echo 29 33 @if [ -d vboxvfs ]; then \ … … 33 37 echo "*** Building 'vboxvfs' module ***"; \ 34 38 $(MAKE) KBUILD_VERBOSE=$(KBUILD_VERBOSE) -C vboxvfs; \ 35 if [ -f vboxvfs/vboxvfs. o ]; then \36 cp vboxvfs/vboxvfs.o .; \39 if [ -f vboxvfs/vboxvfs.ko ]; then \ 40 cp vboxvfs/vboxvfs.ko .; \ 37 41 else \ 38 cp vboxvfs/vboxvfs.ko .; \42 cp vboxvfs/vboxvfs.o .; \ 39 43 fi; \ 40 44 fi
Note:
See TracChangeset
for help on using the changeset viewer.