Fri Feb 23 12:45:08 IST 2007 Mark McLoughlin <markmc@redhat.com>

* qemud/Makefile.am: install libvirt_qemud in /usr/sbin
        instead of /usr/libexec

        * src/Makefile.am, src/qemu_internal.c: pass the correct
        path to libvirt
This commit is contained in:
Mark McLoughlin 2007-02-23 12:46:35 +00:00
parent 992176b177
commit cf0e5df048
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,11 @@
Fri Feb 23 12:45:08 IST 2007 Mark McLoughlin <markmc@redhat.com>
* qemud/Makefile.am: install libvirt_qemud in /usr/sbin
instead of /usr/libexec
* src/Makefile.am, src/qemu_internal.c: pass the correct
path to libvirt
Fri Feb 23 10:26:24 IST 2007 Mark McLoughlin <markmc@redhat.com>
* src/virsh.c: in "start" and "net-start" use e.g.

View File

@ -2,7 +2,7 @@
INCLUDES = @LIBXML_CFLAGS@
libexec_PROGRAMS = libvirt_qemud
sbin_PROGRAMS = libvirt_qemud
libvirt_qemud_SOURCES = qemud.c internal.h protocol.h \
driver.c driver.h \

View File

@ -1,7 +1,7 @@
## Process this file with automake to produce Makefile.in
INCLUDES = -I$(top_builddir)/include -I@top_srcdir@/include @LIBXML_CFLAGS@ -I@top_srcdir@/qemud \
-DBINDIR=\""$(libexecdir)"\" -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
-DBINDIR=\""$(libexecdir)"\" -DSBINDIR=\""$(sbindir)"\" -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
-DLOCAL_STATE_DIR=\""$(localstatedir)"\" \
-DGETTEXT_PACKAGE=\"$(PACKAGE)\"
DEPS = libvirt.la

View File

@ -99,8 +99,8 @@ static const char *
qemuFindServerPath(void)
{
static const char *serverPaths[] = {
BINDIR "/libvirt_qemud",
BINDIR "/libvirt_qemud_dbg",
SBINDIR "/libvirt_qemud",
SBINDIR "/libvirt_qemud_dbg",
NULL
};
int i;