diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-11-02 21:00:39 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-11-06 04:39:02 +0530 |
commit | 2db9417976b7c164e02f11d80e8607bdd665b95c (patch) | |
tree | 11ec96f6f9b9681f00736df6e85c559ad48eaa21 /recipes/build-tools | |
parent | 73b0c8c863d5ed5e904e329b5ac65c3aa43e9899 (diff) |
pkg-config.recipe: Remove libtool dependency
Don't override ltmain.sh since that forces a libtool dependency, which
we do not need for build-tools.
Diffstat (limited to 'recipes/build-tools')
-rw-r--r-- | recipes/build-tools/pkg-config.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/pkg-config.recipe b/recipes/build-tools/pkg-config.recipe index 1e61a2d3..bcb6f3ce 100644 --- a/recipes/build-tools/pkg-config.recipe +++ b/recipes/build-tools/pkg-config.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): url = 'https://pkgconfig.freedesktop.org/releases/pkg-config-%(version)s.tar.gz' tarball_checksum = '6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591' configure_options = '--with-internal-glib --disable-host-tool ' - deps = ['libtool'] + override_libtool = False files_bins = ['pkg-config'] files_share = ['share/aclocal/pkg.m4'] |