From d2477385df5d7896d5df12fef4fd5fedef8b94e1 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 17 Jan 2008 15:17:22 +0000 Subject: tools: LDFLAGS in link lines LDFLAGS is not honoured by a couple of link lines in tools/*, but should be. Signed-off-by: Ian Jackson --- tools/xentrace/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/xentrace') diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile index ce8e4904a8..d4917e561e 100644 --- a/tools/xentrace/Makefile +++ b/tools/xentrace/Makefile @@ -52,6 +52,6 @@ clean: $(RM) *.a *.so *.o *.rpm $(BIN) $(LIBBIN) %: %.c $(HDRS) Makefile - $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -lxenctrl + $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) $(LDFLAGS) -lxenctrl xentrace_%: %.c $(HDRS) Makefile - $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -lxenctrl + $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) $(LDFLAGS) -lxenctrl -- cgit v1.2.3