X-Git-Url: http://nitlanguage.org diff --git a/src/ffi/pkgconfig.nit b/src/ffi/pkgconfig.nit index 7665b7a..453ddfc 100644 --- a/src/ffi/pkgconfig.nit +++ b/src/ffi/pkgconfig.nit @@ -80,15 +80,14 @@ class PkgconfigPhase proc_exist.wait status = proc_exist.status if status == 1 then - modelbuilder.error(nat, "Error: package `{pkg}` unknown by `pkg-config`, make sure the development package is be installed.") - return + modelbuilder.error(nat, "Error: dev package for `{pkg}` unknown by `pkg-config`, install it with `apt-get`, `brew` or similar.") + continue else if status != 0 then modelbuilder.error(nat, "Error: something went wrong calling `pkg-config`, make sure it is correctly installed.") - return + continue end mmodule.pkgconfigs.add pkg end - end end