a3efb3a3bf
--without-html-dir doesn't work. It leads libsoup ./configure script
to think that HTML_DIR is "no", which leads to the installation of the
documentation in $(STAGING_DIR)no (yes, with the "no" suffix at the
end). The issue is that --with-html-dir is not an enable/disable type
of option, it's an option that only allows to pass a PATH for
documentation installation.
As we don't want the documentation to be installed in this odd
$(STAGING_DIR)no directory, we simply get rid of this option.
See 7e62e8ec72
for another instance of
the same problem.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
855 B
Makefile
32 lines
855 B
Makefile
#############################################################
|
|
#
|
|
# libsoup
|
|
#
|
|
#############################################################
|
|
|
|
LIBSOUP_MAJOR_VERSION:=2.26
|
|
LIBSOUP_VERSION:=$(LIBSOUP_MAJOR_VERSION).2
|
|
LIBSOUP_SOURCE:=libsoup-$(LIBSOUP_VERSION).tar.bz2
|
|
LIBSOUP_SITE:=http://ftp.gnome.org/pub/gnome/sources/libsoup/$(LIBSOUP_MAJOR_VERSION)
|
|
LIBSOUP_AUTORECONF = YES
|
|
LIBSOUP_INSTALL_STAGING = YES
|
|
LIBSOUP_INSTALL_TARGET = YES
|
|
|
|
LIBSOUP_CONF_ENV = ac_cv_path_GLIB_GENMARSHAL=$(LIBGLIB2_HOST_BINARY)
|
|
|
|
ifneq ($(BR2_INET_IPV6),y)
|
|
LIBSOUP_CONF_ENV += soup_cv_ipv6=no
|
|
endif
|
|
|
|
LIBSOUP_CONF_OPT = \
|
|
--enable-shared \
|
|
--enable-static \
|
|
--disable-explicit-deps \
|
|
--disable-glibtest \
|
|
--without-gnome \
|
|
--disable-gtk-doc
|
|
|
|
LIBSOUP_DEPENDENCIES = gettext libintl host-pkg-config host-libglib2 libglib2 libxml2
|
|
|
|
$(eval $(call AUTOTARGETS,package,libsoup))
|