aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/Makefile
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-17 18:35:13 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-10-17 18:35:13 +0100
commit7b7b7c2feffe2ae844a5691665000d085d938c3a (patch)
treecc9508e5660405fc7675c7aae169e20f5668171f /tools/libxc/Makefile
parentb7fe460763d3af03fdde9e369375a7e2a133def4 (diff)
downloadxen-7b7b7c2feffe2ae844a5691665000d085d938c3a.tar.gz
xen-7b7b7c2feffe2ae844a5691665000d085d938c3a.tar.bz2
xen-7b7b7c2feffe2ae844a5691665000d085d938c3a.zip
Fix multiple inclusion when building libxenguest.
Signed-off-by: John Levon <john.levon@sun.com>
Diffstat (limited to 'tools/libxc/Makefile')
-rw-r--r--tools/libxc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/Makefile b/tools/libxc/Makefile
index 98c43ac7c1..b5e61af64d 100644
--- a/tools/libxc/Makefile
+++ b/tools/libxc/Makefile
@@ -132,7 +132,7 @@ libxenguest.so.$(MAJOR): libxenguest.so.$(MAJOR).$(MINOR)
ln -sf $< $@
libxenguest.so.$(MAJOR).$(MINOR): $(GUEST_PIC_OBJS) libxenctrl.so
- $(CC) $(CFLAGS) $(LDFLAGS) -Wl,$(SONAME_LDFLAG) -Wl,libxenguest.so.$(MAJOR) $(SHLIB_CFLAGS) -o $@ $^ -lz -lxenctrl
+ $(CC) $(CFLAGS) $(LDFLAGS) -Wl,$(SONAME_LDFLAG) -Wl,libxenguest.so.$(MAJOR) $(SHLIB_CFLAGS) -o $@ $(GUEST_PIC_OBJS) -lz -lxenctrl
-include $(DEPS)