aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenstore/Makefile
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-07-25 11:41:18 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-07-25 11:41:18 +0100
commitbf5226569ac8189a6c5d0db4078ccea3b10a2487 (patch)
treeb9834ebb47b36b5a0020bbc43840663b6248cfd2 /tools/xenstore/Makefile
parent3fc05fdad86c751517c17df165be971dd7521105 (diff)
downloadxen-bf5226569ac8189a6c5d0db4078ccea3b10a2487.tar.gz
xen-bf5226569ac8189a6c5d0db4078ccea3b10a2487.tar.bz2
xen-bf5226569ac8189a6c5d0db4078ccea3b10a2487.zip
The blktap commit reverted the change so that libxenstore gets
installed executable. :/ Updated patch to fix things again Signed-off-by: Jeremy Katz <katzj@redhat.com>
Diffstat (limited to 'tools/xenstore/Makefile')
-rw-r--r--tools/xenstore/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile
index c8a6a483d8..11e6b93196 100644
--- a/tools/xenstore/Makefile
+++ b/tools/xenstore/Makefile
@@ -5,7 +5,6 @@ XEN_LIBXC = $(XEN_ROOT)/tools/libxc
INSTALL = install
INSTALL_DATA = $(INSTALL) -m0644
INSTALL_PROG = $(INSTALL) -m0755
-INSTALL_LIBS = $(INSTALL) -m0755
INSTALL_DIR = $(INSTALL) -d -m0755
PROFILE=#-pg
@@ -175,7 +174,8 @@ install: all
$(INSTALL_PROG) xenstore-control $(DESTDIR)/usr/bin
$(INSTALL_PROG) xenstore-ls $(DESTDIR)/usr/bin
$(INSTALL_DIR) -p $(DESTDIR)/usr/$(LIBDIR)
- $(INSTALL_DATA) libxenstore.* $(DESTDIR)/usr/$(LIBDIR)
+ $(INSTALL_PROG) libxenstore.so* $(DESTDIR)/usr/$(LIBDIR)
+ $(INSTALL_DATA) libxenstore.a $(DESTDIR)/usr/$(LIBDIR)
$(INSTALL_DATA) xs.h $(DESTDIR)/usr/include
$(INSTALL_DATA) xs_lib.h $(DESTDIR)/usr/include