aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2011-09-22 18:37:06 +0100
committerIan Campbell <ian.campbell@citrix.com>2011-09-22 18:37:06 +0100
commitef80eecda3f183b97ec4060a7f49bc24f14b086c (patch)
tree8098bcd7fc2ca064173c82896985ce4ed73bae88 /tools/misc
parent2f0f0613f62a786c3ea398ec3f743df7c3305fa1 (diff)
downloadxen-ef80eecda3f183b97ec4060a7f49bc24f14b086c.tar.gz
xen-ef80eecda3f183b97ec4060a7f49bc24f14b086c.tar.bz2
xen-ef80eecda3f183b97ec4060a7f49bc24f14b086c.zip
tools: fix install of lomount
$(BIN) went away in 23124:e3d4c34b14a3. Also there are no *.so, *.a or *.rpm built in here Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/misc')
-rw-r--r--tools/misc/lomount/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/misc/lomount/Makefile b/tools/misc/lomount/Makefile
index 1d6d00cf5e..b0afe660ab 100644
--- a/tools/misc/lomount/Makefile
+++ b/tools/misc/lomount/Makefile
@@ -11,11 +11,11 @@ build: lomount
.PHONY: install
install install-recurse: build
- $(INSTALL_PROG) $(BIN) $(SCRIPTS) $(DESTDIR)$(BINDIR)
+ $(INSTALL_PROG) lomount $(SCRIPTS) $(DESTDIR)$(BINDIR)
.PHONY: clean
clean:
- $(RM) *.a *.so *.o *.rpm $(BIN)
+ $(RM) *.o lomount
lomount: lomount.o
$(CC) $(CFLAGS) -o $@ $<