X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=config.ml;h=11734d3858181a211867c2cd9a400f29b13e4779;hb=b83fee0aa61ed1e51cf404be3af977fc3f8ffe19;hp=60166470e47eef038c9d9962dd0b7ac58dddbd08;hpb=337432e0edece84d7c4d4894c9ce9d76fa729252;p=goaljobs-goals.git diff --git a/config.ml b/config.ml index 6016647..11734d3 100644 --- a/config.ml +++ b/config.ml @@ -30,16 +30,28 @@ let libguestfs_localconfigure source = --prefix /usr \\ --disable-static \\ --with-default-backend=libvirt \\ - --enable-gcc-warnings \\ + --enable-werror \\ --enable-gtk-doc \\ + --disable-golang \\ -C \\ \"$@\" " configure -let libguestfs_localenv = "\ +let libguestfs_localenv supermin = + "\ # Parallel test runs out of resources starting qemu, unclear why. export SKIP_TEST_PARALLEL_MOUNT_LOCAL=1 # Fails under valgrind because cpio subprocess has a memory leak. export SKIP_TEST_FILE_ARCHITECTURE_11=1 -" + +" ^ + match supermin with + | None -> "" + | Some (supermin, supermin_helper) -> + sprintf "\ +# Needs a modified path to supermin binaries: +export SUPERMIN=%s +export SUPERMIN_HELPER=%s + +" supermin supermin_helper