debuggers.hg
changeset 20928:09dd83d09f49
Remus: ensure kernel modules are built before attempting to install
them
make tools seems to skip straight to the install target.
Signed-off-by: Brendan Cully <brendan@cs.ubc.ca>
them
make tools seems to skip straight to the install target.
Signed-off-by: Brendan Cully <brendan@cs.ubc.ca>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Wed Feb 03 09:38:00 2010 +0000 (2010-02-03) |
parents | 62ce32978d2e |
children | a7546e45ca83 |
files | tools/remus/kmod/Makefile |
line diff
1.1 --- a/tools/remus/kmod/Makefile Wed Feb 03 09:37:40 2010 +0000 1.2 +++ b/tools/remus/kmod/Makefile Wed Feb 03 09:38:00 2010 +0000 1.3 @@ -17,7 +17,7 @@ all: 1.4 if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` modules; fi 1.5 1.6 .PHONY: install 1.7 -install: 1.8 +install: all 1.9 if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) modules_install; fi 1.10 1.11 clean::