-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build instructions do not work, AM_GNU_GETTEXT #25
base: master
Are you sure you want to change the base?
Conversation
add dependency list to readme
@@ -21,6 +21,9 @@ the source tree. | |||
BUILDING FROM SOURCE | |||
====================================================================== | |||
|
|||
Install dependencies | |||
sudo apt install build-essential ca-certificates gcc make automake libtool libguestfs-tools libguestfs-dev libnbd-dev gettext libpcre2-dev libvirt-dev libxml2-dev libjansson-dev libosinfo-1.0-dev ocaml-findlib libvirt-ocaml-dev libguestfs-ocaml-dev libnbd-ocaml-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commit message is not clear - what do you mean by "AM_GNU_GETTEXT"? maybe you mean that the gettext
package was missing?
But I think it will be better to use the equivalent of dnf builddep
for apt based systems, installing the needed packages based on the package metadata. With this you get all the packages in most cases and there is no need to maintain this packages list.
If we go with actual package list, it should be sorted and formatted as one package per line:
sudo apt install \
build-essential \
ca-certificates \
gcc \
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMHO better instructions would be just:
apt-get build-dep virt-v2v
apt-get install autoconf automake libtool-bin gettext
* OCaml oUnit2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated change
add dependency list to readme
Fixes #24