[libvirt] [PATCH] Install schemas into correct location for Solaris

john.levon at sun.com john.levon at sun.com
Wed Jan 28 05:23:52 UTC 2009


# HG changeset patch
# User john.levon at sun.com
# Date 1233119659 28800
# Node ID cc848242fa810e8d0126b651849de715c7ef32e4
# Parent  f91041f0c607be72c4b5695f081d20716521f6c5
Install schemas into correct location for Solaris

Signed-off-by: John Levon <john.levon at sun.com>

diff --git a/configure.in b/configure.in
--- a/configure.in
+++ b/configure.in
@@ -141,6 +141,10 @@ if test -n "$UDEVSETTLE"; then
   AC_DEFINE_UNQUOTED([UDEVSETTLE],["$UDEVSETTLE"],
         [Location or name of the udevsettle program])
 fi
+
+SCHEMA_DIR=${pkgdatadir}/schemas
+test `uname -s` = SunOS && SCHEMA_DIR=${datadir}/lib/xml/rng/libvirt
+AC_SUBST([SCHEMA_DIR])
 
 dnl Specific dir for HTML output ?
 AC_ARG_WITH([html-dir], [AC_HELP_STRING([--with-html-dir=path],
diff --git a/docs/schemas/Makefile.am b/docs/schemas/Makefile.am
--- a/docs/schemas/Makefile.am
+++ b/docs/schemas/Makefile.am
@@ -1,6 +1,7 @@
 
 
-schemadir = $(pkgdatadir)/schemas
+schemadir = $(SCHEMA_DIR)
+
 schema_DATA = \
 	domain.rng \
 	network.rng \




More information about the libvir-list mailing list