From: emellor@leeni.uk.xensource.com Date: Wed, 11 Jan 2006 16:23:16 +0000 (+0000) Subject: Install in /usr/sbin, not /usr/local/sbin, for consistency with the rest of the X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16541^2~63 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a72cda2a94ccacbefcf81f0cfedb0646af9b1ef6;p=xen.git Install in /usr/sbin, not /usr/local/sbin, for consistency with the rest of the Xen distribution. Closes bug #462. Signed-off-by: Ewan Mellor --- diff --git a/tools/xenmon/Makefile b/tools/xenmon/Makefile index 7fdf786445..6ff8391f9c 100644 --- a/tools/xenmon/Makefile +++ b/tools/xenmon/Makefile @@ -13,12 +13,9 @@ INSTALL = install INSTALL_PROG = $(INSTALL) -m0755 INSTALL_DIR = $(INSTALL) -d -m0755 -INSTALL_DATA = $(INSTALL) -m064 +INSTALL_DATA = $(INSTALL) -m0644 -prefix=/usr/local -mandir=$(prefix)/share/man -man1dir=$(mandir)/man1 -sbindir=$(prefix)/sbin +sbindir=/usr/sbin XEN_ROOT=../.. include $(XEN_ROOT)/tools/Rules.mk