tools/xenalyze: Remove bogus library dependencies
authorGeorge Dunlap <george.dunlap@citrix.com>
Mon, 8 Aug 2016 09:42:48 +0000 (10:42 +0100)
committerGeorge Dunlap <george.dunlap@citrix.com>
Tue, 9 Aug 2016 14:41:35 +0000 (15:41 +0100)
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 <george.dunlap@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Dario Faggioli <dario.faggioli@citrix.com>
tools/xentrace/Makefile

index 0157be2d35a61b8fd992ba1d23f27ea45a6716c0..a85ed33406588c31d612bc29a07f0eaa649af15b 100644 (file)
@@ -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)