mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
2a95a3e976
This patch will probably cause merge conflicts to those trying to do backports. The end goal is simple - domaincommon.rng should be the state of domain.rng pre-patch, with a few lines tweaked in the header, while domain.rng post-patch is now just a shell that includes domaincommon.rng and sets the <start>. * docs/schemas/domain.rng: Move guts... * docs/schemas/domaincommon.rng: ...to new file. * docs/schemas/domainsnapshot.rng: Allow new xml. * docs/schemas/Makefile.am (schema_DATA): Distribute new file. * tests/domainsnapshotxml2xmlout/full_domain.xml: New test. * libvirt.spec.in (%files client): Ship new file. Sort lines. * mingw32-libvirt.spec.in: Likewise.
22 lines
423 B
Makefile
22 lines
423 B
Makefile
## Copyright (C) 2005-2011 Red Hat, Inc.
|
|
## See COPYING.LIB for the License of this software
|
|
|
|
schemadir = $(pkgdatadir)/schemas
|
|
schema_DATA = \
|
|
basictypes.rng \
|
|
capability.rng \
|
|
domain.rng \
|
|
domaincommon.rng \
|
|
domainsnapshot.rng \
|
|
interface.rng \
|
|
network.rng \
|
|
networkcommon.rng \
|
|
nodedev.rng \
|
|
nwfilter.rng \
|
|
secret.rng \
|
|
storageencryption.rng \
|
|
storagepool.rng \
|
|
storagevol.rng
|
|
|
|
EXTRA_DIST = $(schema_DATA)
|