aboutsummaryrefslogtreecommitdiffstats
path: root/tools/remus
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-02-03 09:38:00 +0000
committerKeir Fraser <keir.fraser@citrix.com>2010-02-03 09:38:00 +0000
commita90054b38b707d1a02d903c72b2484882377a2bc (patch)
tree37fcdee9bae316cd91497aabfdd3af3ac230f9d0 /tools/remus
parent283444b7cd18dbeaedabc7f45ac105d43e32d42f (diff)
downloadxen-a90054b38b707d1a02d903c72b2484882377a2bc.tar.gz
xen-a90054b38b707d1a02d903c72b2484882377a2bc.tar.bz2
xen-a90054b38b707d1a02d903c72b2484882377a2bc.zip
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>
Diffstat (limited to 'tools/remus')
-rw-r--r--tools/remus/kmod/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/remus/kmod/Makefile b/tools/remus/kmod/Makefile
index e57e7bd899..bc4eaf4d6a 100644
--- a/tools/remus/kmod/Makefile
+++ b/tools/remus/kmod/Makefile
@@ -17,7 +17,7 @@ all:
if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` modules; fi
.PHONY: install
-install:
+install: all
if test -d $(KERNELDIR); then $(MAKE) -C $(KERNELDIR) SUBDIRS=`pwd` INSTALL_MOD_PATH=$(DESTDIR) modules_install; fi
clean::