mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-08 14:29:56 +00:00
110c0db88c
Having two tiny files with a couple definitions didn't make as much sense as one common file, especially since I plan to add more definitions and use it in more places. * docs/schemas/storageencryption.rng: Merge this... * docs/schemas/storagefilefeatures.rng: ...and this, into... * docs/schemas/storagecommon.rng: ...this new file. * docs/schemas/Makefile.am (schema_DATA): Reflect renames. * docs/schemas/storagevol.rng: Likewise. * docs/schemas/domaincommon.rng: Likewise. * libvirt.spec.in: Likewise. * mingw-libvirt.spec.in: Likewise. Signed-off-by: Eric Blake <eblake@redhat.com>
35 lines
1.0 KiB
Makefile
35 lines
1.0 KiB
Makefile
## Copyright (C) 2005-2011, 2013-2014 Red Hat, Inc.
|
|
##
|
|
## This library is free software; you can redistribute it and/or
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
## License as published by the Free Software Foundation; either
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
##
|
|
## This library is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
## Lesser General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU Lesser General Public
|
|
## License along with this library. If not, see
|
|
## <http://www.gnu.org/licenses/>.
|
|
|
|
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 \
|
|
storagecommon.rng \
|
|
storagepool.rng \
|
|
storagevol.rng
|
|
|
|
EXTRA_DIST = $(schema_DATA)
|