mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
This is the proper way to do it according to our reStructuredText style guidelines. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
39 lines
874 B
ReStructuredText
39 lines
874 B
ReStructuredText
=======================
|
|
Contributing to libvirt
|
|
=======================
|
|
|
|
Full, up to date information on how to contribute to libvirt can be
|
|
found on the libvirt website:
|
|
|
|
https://libvirt.org/contribute.html
|
|
|
|
To build the same document locally, from the top level directory of
|
|
your git clone run:
|
|
|
|
::
|
|
|
|
$ mkdir build && cd build
|
|
$ ../autogen.sh
|
|
$ make
|
|
|
|
You'll find the freshly-built document in ``docs/contribute.html``.
|
|
|
|
If ``configure`` fails because of missing dependencies, you can set
|
|
up your system by calling
|
|
|
|
::
|
|
|
|
$ sudo dnf builddep libvirt
|
|
|
|
if you're on a RHEL-based distribution or
|
|
|
|
::
|
|
|
|
$ sudo apt-get build-dep libvirt
|
|
|
|
if you're on a Debian-based one.
|
|
|
|
You might still be missing some dependencies if your distribution is
|
|
shipping an old libvirt version, but that will get you much closer to
|
|
where you need to be to build successfully from source.
|