diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2017-03-14 11:46:26 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-14 23:21:12 +0100 |
commit | efce7b65e3dc8aa476993148d62cb6dcfbe7bb81 (patch) | |
tree | 71e8ac1f4b9495dab7a981b33095e92ac60220c8 | |
parent | 4ac1a2b1baeccc25999c033219df4194ff371c49 (diff) | |
download | buildroot-efce7b65e3dc8aa476993148d62cb6dcfbe7bb81.tar.gz buildroot-efce7b65e3dc8aa476993148d62cb6dcfbe7bb81.zip |
libgtk3: remove non-existent configure options
>From config.log:
configure: WARNING: unrecognized options: --disable-doc, --disable-docs,
--disable-documentation, --with-xmlto, --with-fop, --enable-ipv6,
--enable-gtk2-dependency, --disable-introspection
Remove non-existent --enable-gtk2-dependency and --disable-introspection
configure options from libgtk3.mk.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libgtk3/libgtk3.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/libgtk3/libgtk3.mk b/package/libgtk3/libgtk3.mk index 048029dae0..210f3e5318 100644 --- a/package/libgtk3/libgtk3.mk +++ b/package/libgtk3/libgtk3.mk @@ -20,9 +20,7 @@ LIBGTK3_CONF_ENV = \ LIBGTK3_CONF_OPTS = \ --disable-glibtest \ - --enable-explicit-deps=no \ - --enable-gtk2-dependency \ - --disable-introspection + --enable-explicit-deps=no # Override pkg-config pkgdatadir variable, it needs the prefix LIBGTK3_MAKE_OPTS = \ |