mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 13:33:28 +08:00
0f9c0bf3d5
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l '$(HOST_DIR)/usr/bin' | xargs sed -i 's%$(HOST_DIR)/usr/bin%$(HOST_DIR)/bin%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# dbus-glib
|
|
#
|
|
################################################################################
|
|
|
|
DBUS_GLIB_VERSION = 0.108
|
|
DBUS_GLIB_SITE = http://dbus.freedesktop.org/releases/dbus-glib
|
|
DBUS_GLIB_INSTALL_STAGING = YES
|
|
DBUS_GLIB_LICENSE = AFL-2.1 or GPL-2.0+
|
|
DBUS_GLIB_LICENSE_FILES = COPYING
|
|
|
|
DBUS_GLIB_CONF_ENV = \
|
|
ac_cv_have_abstract_sockets=yes \
|
|
ac_cv_func_posix_getpwnam_r=yes \
|
|
have_abstract_sockets=yes
|
|
|
|
DBUS_GLIB_CONF_OPTS = \
|
|
--disable-tests \
|
|
--disable-xml-docs \
|
|
--with-introspect-xml=$(DBUS_HOST_INTROSPECT) \
|
|
--with-dbus-binding-tool=$(DBUS_GLIB_HOST_BINARY) \
|
|
--disable-bash-completion \
|
|
--disable-doxygen-docs \
|
|
--enable-asserts=yes
|
|
|
|
DBUS_GLIB_DEPENDENCIES = host-pkgconf dbus host-dbus host-dbus-glib libglib2 expat
|
|
|
|
HOST_DBUS_GLIB_DEPENDENCIES = host-dbus host-expat host-libglib2
|
|
|
|
HOST_DBUS_GLIB_CONF_OPTS = \
|
|
--disable-tests \
|
|
--disable-xml-docs \
|
|
--disable-bash-completion \
|
|
--disable-doxygen-docs \
|
|
--enable-asserts=yes
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
# dbus-glib for the host
|
|
DBUS_GLIB_HOST_BINARY = $(HOST_DIR)/bin/dbus-binding-tool
|