aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenstore/Makefile
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-03-20 10:37:12 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-03-20 10:37:12 +0000
commita7eb53a53f1325377df30ca069262b59a01cbbee (patch)
tree14e4ed4d4ecff828b2b17fb0b94187590398f64e /tools/xenstore/Makefile
parentb04cc386ed1898b0e74804e404c16bbb847cbb68 (diff)
downloadxen-a7eb53a53f1325377df30ca069262b59a01cbbee.tar.gz
xen-a7eb53a53f1325377df30ca069262b59a01cbbee.tar.bz2
xen-a7eb53a53f1325377df30ca069262b59a01cbbee.zip
xenstore: Don't hardcode install path
Signed-off-by: Christoph Egger <Christoph.Egger@amd.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 c84505cc3c..91b854da90 100644
--- a/tools/xenstore/Makefile
+++ b/tools/xenstore/Makefile
@@ -97,9 +97,9 @@ install: all
$(INSTALL_DIR) $(DESTDIR)$(INCLUDEDIR)
$(INSTALL_PROG) xenstored $(DESTDIR)$(SBINDIR)
$(INSTALL_PROG) xenstore-control $(DESTDIR)$(BINDIR)
- $(INSTALL_PROG) xenstore $(DESTDIR)/usr/bin
+ $(INSTALL_PROG) xenstore $(DESTDIR)$(BINDIR)
set -e ; for c in $(CLIENTS) ; do \
- ln -f $(DESTDIR)/usr/bin/xenstore $(DESTDIR)/usr/bin/$${c} ; \
+ ln -f $(DESTDIR)$(BINDIR)/xenstore $(DESTDIR)$(BINDIR)/$${c} ; \
done
$(INSTALL_DIR) $(DESTDIR)$(LIBDIR)
$(INSTALL_PROG) libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)$(LIBDIR)