diff options
Diffstat (limited to 'make/utilities.pm')
-rw-r--r-- | make/utilities.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/make/utilities.pm b/make/utilities.pm index 7a45ebb3e..532c09096 100644 --- a/make/utilities.pm +++ b/make/utilities.pm @@ -198,8 +198,11 @@ sub pkgconfig_check_version($$;$) return 0; } } + # If we didnt find it, we cant definitively say its too old. + # Return ok, and let pkgconflibs() or pkgconfincludes() pick up + # the missing library later on. print "\033[1;32mNo (not found)\033[0m\n"; - return 0; + return 1; } sub pkgconfig_get_lib_dirs($$$;$) |