search for: 17ad8a2

Displaying 3 results from an estimated 3 matches for "17ad8a2".

Did you mean: 17ad8a29c
2017 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...TFS_PRIVATE=1 \ -I$(top_builddir) -I$(OCAMLLIB) -I$(top_srcdir)/ocaml \ + -I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \ -I$(top_srcdir)/src -I$(top_builddir)/src \ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib diff --git a/v2v/utils.ml b/v2v/utils.ml index 1b48974..17ad8a2 100644 --- a/v2v/utils.ml +++ b/v2v/utils.ml @@ -51,7 +51,7 @@ let qemu_supports_sound_card = function (* Find the UEFI firmware. *) let find_uefi_firmware guest_arch = let files = - (* The lists of firmware are actually defined in src/uefi.c. *) + (* The lists of firmware are actually d...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.