search for: 4b3e13c

Displaying 4 results from an estimated 4 matches for "4b3e13c".

2016 May 24
3
[PATCH 1/3] inspect: recognize the Void Linux distribution
Since Void Linux provides only an /etc/os-release with no VERSION_ID field, then special-case it to avoid that the os-release parsing ignore it. This provides basic distro identification, and icon. --- generator/actions.ml | 4 ++++ inspector/virt-inspector.rng | 1 + src/guestfs-internal.h | 1 + src/inspect-fs-unix.c | 14 ++++++++++++-- src/inspect-fs.c |
2016 May 24
0
[PATCH 3/3] customize: add support for the xbps package manager
--- customize/customize_run.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 4b3e13c..c9d9d7d 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -114,6 +114,7 @@ exec >>%s 2>&1 | "pisi" -> sprintf "pisi it %s" quoted_args | "pacman" -> sprintf "pacman -S %s" quoted_args | "urpm...
2016 May 22
0
[PATCH 2/2] ocaml tools: Use a common debug function.
...%s: internal error: invalid argument: %s\n") prog msg - ); - acc + debug "internal error: invalid argument: %s" msg; + acc ) acc files ) [] dirs diff --git a/customize/customize_run.ml b/customize/customize_run.ml index a4d7c1a..4b3e13c 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -85,7 +85,7 @@ exec >>%s 2>&1 %s " (quote logfile) env_vars cmd in - if verbose () then printf "running command:\n%s\n%!" cmd; + debug "running command:\n%s" cmd; try ign...
2016 May 22
4
ocaml tools: Use a common debug function.
Add a Common_utils.debug function for printing messages only when in verbose mode. Rich.