diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-01-26 19:11:45 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-01-26 19:11:45 +0300 |
commit | d871744cff022741d96dfb84440bdc3a7590bd4c (patch) | |
tree | fffce15606f5b8f5209006f7774596ae45469c7d | |
parent | e545cd72aed207b139f0c17441b8e03b640fbd57 (diff) |
Fix b_info() failing for stub packages
-rw-r--r-- | libbutl/b.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/b.cxx b/libbutl/b.cxx index bf7a407..5601e6f 100644 --- a/libbutl/b.cxx +++ b/libbutl/b.cxx @@ -158,7 +158,7 @@ namespace butl if (!v.empty ()) try { - r.version = standard_version (v); + r.version = standard_version (v, standard_version::allow_stub); } catch (const invalid_argument& e) { |