From: George Dunlap Date: Mon, 8 Aug 2016 09:42:48 +0000 (+0100) Subject: tools/xenalyze: Remove bogus library dependencies X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~590 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c36e1c247ad3eca17f0048dda8452973b6672f65;p=xen.git tools/xenalyze: Remove bogus library dependencies xenalyze was inheriting LDLIBS of xentrace; but it doesn't need them. Remove this dependency, which allows xenalyze to be built without the libraries having been built, and run without the libraries being installed. Signed-off-by: George Dunlap Acked-by: Wei Liu Reviewed-by: Dario Faggioli --- diff --git a/tools/xentrace/Makefile b/tools/xentrace/Makefile index 0157be2d35..a85ed33406 100644 --- a/tools/xentrace/Makefile +++ b/tools/xentrace/Makefile @@ -50,7 +50,7 @@ xentrace_setsize: setsize.o $(CC) $(LDFLAGS) -o $@ $< $(LDLIBS) $(APPEND_LDFLAGS) xenalyze: xenalyze.o mread.o - $(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS) $(APPEND_LDFLAGS) + $(CC) $(LDFLAGS) -o $@ $^ $(APPEND_LDFLAGS) -include $(DEPS)