From: Ian Campbell Date: Thu, 22 Sep 2011 17:37:06 +0000 (+0100) Subject: tools: fix install of lomount X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~9864 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ef80eecda3f183b97ec4060a7f49bc24f14b086c;p=xen.git 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 --- 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 $@ $<