* [Buildroot] [PATCH resend 01/22] package: derive HOST_FOO_DEPENDENCIES from FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 02/22] atk: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
` (21 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/Makefile.autotools.in | 10 ++++++++++
package/Makefile.package.in | 7 ++++++-
2 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/package/Makefile.autotools.in b/package/Makefile.autotools.in
index c84afa0..495a075 100644
--- a/package/Makefile.autotools.in
+++ b/package/Makefile.autotools.in
@@ -200,6 +200,16 @@ define AUTORECONF_HOOK
fi
endef
+# This must be repeated from GENTARGETS_INNER, otherwise we get an empty
+# _DEPENDENCIES if _AUTORECONF is YES. Also filter the result of _AUTORECONF
+# away from the non-host rule
+ifndef $(2)_DEPENDENCIES
+ ifdef $(3)_DEPENDENCIES
+ $(2)_DEPENDENCIES = $(filter-out host-automake host-autoconf host-libtool,\
+ $(patsubst host-host-%,host-%,$(addprefix host-,$($(3)_DEPENDENCIES))))
+ endif
+endif
+
ifeq ($$($(2)_AUTORECONF),YES)
$(2)_PRE_CONFIGURE_HOOKS += AUTORECONF_HOOK
$(2)_DEPENDENCIES += host-automake host-autoconf host-libtool
diff --git a/package/Makefile.package.in b/package/Makefile.package.in
index e85eb15..a27804b 100644
--- a/package/Makefile.package.in
+++ b/package/Makefile.package.in
@@ -542,7 +542,12 @@ $(2)_OVERRIDE_SRCDIR = $($(2)_SITE)
endif
endif
-$(2)_DEPENDENCIES ?=
+ifndef $(2)_DEPENDENCIES
+ ifdef $(3)_DEPENDENCIES
+ $(2)_DEPENDENCIES = $(patsubst host-host-%,host-%,$(addprefix host-,$($(3)_DEPENDENCIES)))
+ endif
+endif
+
$(2)_INSTALL_STAGING ?= NO
$(2)_INSTALL_IMAGES ?= NO
$(2)_INSTALL_TARGET ?= YES
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 02/22] atk: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 01/22] package: derive HOST_FOO_DEPENDENCIES from FOO_DEPENDENCIES Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 03/22] cramfs: " Arnout Vandecappelle
` (20 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/atk/atk.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/atk/atk.mk b/package/atk/atk.mk
index f0e96a5..d84d08c 100644
--- a/package/atk/atk.mk
+++ b/package/atk/atk.mk
@@ -52,8 +52,6 @@ endif
ATK_DEPENDENCIES = libglib2 host-pkg-config
-HOST_ATK_DEPENDENCIES = host-libglib2 host-pkg-config
-
HOST_ATK_CONF_OPT = \
--disable-glibtest
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 03/22] cramfs: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 01/22] package: derive HOST_FOO_DEPENDENCIES from FOO_DEPENDENCIES Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 02/22] atk: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 04/22] libpng: " Arnout Vandecappelle
` (19 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/cramfs/cramfs.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/cramfs/cramfs.mk b/package/cramfs/cramfs.mk
index 4a0ec1c..57dbe40 100644
--- a/package/cramfs/cramfs.mk
+++ b/package/cramfs/cramfs.mk
@@ -9,7 +9,6 @@ CRAMFS_SOURCE=cramfs-$(CRAMFS_VERSION).tar.gz
CRAMFS_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/cramfs
CRAMFS_DEPENDENCIES = zlib
-HOST_CRAMFS_DEPENDENCIES = host-zlib
define CRAMFS_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D)
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 04/22] libpng: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (2 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 03/22] cramfs: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 05/22] fontconfig: " Arnout Vandecappelle
` (18 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/libpng/libpng.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/libpng/libpng.mk b/package/libpng/libpng.mk
index d2aa329..f78b61d 100644
--- a/package/libpng/libpng.mk
+++ b/package/libpng/libpng.mk
@@ -10,8 +10,6 @@ LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.bz2
LIBPNG_INSTALL_STAGING = YES
LIBPNG_DEPENDENCIES = host-pkg-config zlib
-HOST_LIBPNG_DEPENDENCIES = host-pkg-config host-zlib
-
define LIBPNG_STAGING_LIBPNG12_CONFIG_FIXUP
$(SED) "s,^prefix=.*,prefix=\'$(STAGING_DIR)/usr\',g" \
-e "s,^exec_prefix=.*,exec_prefix=\'$(STAGING_DIR)/usr\',g" \
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 05/22] fontconfig: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (3 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 04/22] libpng: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 06/22] mpc: " Arnout Vandecappelle
` (17 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/fontconfig/fontconfig.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/fontconfig/fontconfig.mk b/package/fontconfig/fontconfig.mk
index fc6ad68..39815ed 100644
--- a/package/fontconfig/fontconfig.mk
+++ b/package/fontconfig/fontconfig.mk
@@ -22,7 +22,6 @@ FONTCONFIG_CONF_OPT = --with-arch=$(GNU_TARGET_NAME) \
FONTCONFIG_DEPENDENCIES = freetype expat
-HOST_FONTCONFIG_DEPENDENCIES = host-freetype host-expat
HOST_FONTCONFIG_CONF_OPT = \
--disable-docs \
--disable-static
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 06/22] mpc: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (4 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 05/22] fontconfig: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 07/22] libxml-parser-perl: " Arnout Vandecappelle
` (16 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/mpc/mpc.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/mpc/mpc.mk b/package/mpc/mpc.mk
index 608c9f4..e5ee489 100644
--- a/package/mpc/mpc.mk
+++ b/package/mpc/mpc.mk
@@ -10,7 +10,6 @@ MPC_INSTALL_STAGING = YES
MPC_DEPENDENCIES = gmp mpfr
MPC_AUTORECONF = YES
HOST_MPC_AUTORECONF = YES
-HOST_MPC_DEPENDENCIES = host-gmp host-mpfr
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 07/22] libxml-parser-perl: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (5 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 06/22] mpc: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 08/22] squashfs3: " Arnout Vandecappelle
` (15 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/libxml-parser-perl/libxml-parser-perl.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/libxml-parser-perl/libxml-parser-perl.mk b/package/libxml-parser-perl/libxml-parser-perl.mk
index ecc2cc9..9e6f2ec 100644
--- a/package/libxml-parser-perl/libxml-parser-perl.mk
+++ b/package/libxml-parser-perl/libxml-parser-perl.mk
@@ -8,7 +8,6 @@ LIBXML_PARSER_PERL_SOURCE:=XML-Parser-$(LIBXML_PARSER_PERL_VERSION).tar.gz
LIBXML_PARSER_PERL_SITE:=http://www.cpan.org/modules/by-module/XML/
LIBXML_PARSER_PERL_DEPENDENCIES = expat
-HOST_LIBXML_PARSER_PERL_DEPENDENCIES = host-expat
define HOST_LIBXML_PARSER_PERL_CONFIGURE_CMDS
(cd $(@D) ; \
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 08/22] squashfs3: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (6 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 07/22] libxml-parser-perl: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 09/22] mpfr: " Arnout Vandecappelle
` (14 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/squashfs3/squashfs3.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/squashfs3/squashfs3.mk b/package/squashfs3/squashfs3.mk
index 178543b..81cdf79 100644
--- a/package/squashfs3/squashfs3.mk
+++ b/package/squashfs3/squashfs3.mk
@@ -3,7 +3,6 @@ SQUASHFS3_SOURCE=squashfs$(SQUASHFS3_VERSION).tar.gz
SQUASHFS3_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/squashfs
SQUASHFS3_DEPENDENCIES = zlib
-HOST_SQUASHFS3_DEPENDENCIES = host-zlib
define SQUASHFS3_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) \
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 09/22] mpfr: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (7 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 08/22] squashfs3: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 10/22] xapp_mkfontscale: " Arnout Vandecappelle
` (13 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/mpfr/mpfr.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/mpfr/mpfr.mk b/package/mpfr/mpfr.mk
index 7f33599..6876d6f 100644
--- a/package/mpfr/mpfr.mk
+++ b/package/mpfr/mpfr.mk
@@ -10,7 +10,6 @@ MPFR_SOURCE = mpfr-$(MPFR_VERSION).tar.bz2
MPFR_INSTALL_STAGING = YES
MPFR_DEPENDENCIES = gmp
MPFR_MAKE_OPT = RANLIB=$(TARGET_RANLIB)
-HOST_MPFR_DEPENDENCIES = host-gmp
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 10/22] xapp_mkfontscale: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (8 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 09/22] mpfr: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 11/22] xlib_libXdmcp: " Arnout Vandecappelle
` (12 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xapp_mkfontscale/xapp_mkfontscale.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xapp_mkfontscale/xapp_mkfontscale.mk b/package/x11r7/xapp_mkfontscale/xapp_mkfontscale.mk
index a4218b0..02e7824 100644
--- a/package/x11r7/xapp_mkfontscale/xapp_mkfontscale.mk
+++ b/package/x11r7/xapp_mkfontscale/xapp_mkfontscale.mk
@@ -8,7 +8,6 @@ XAPP_MKFONTSCALE_VERSION = 1.0.7
XAPP_MKFONTSCALE_SOURCE = mkfontscale-$(XAPP_MKFONTSCALE_VERSION).tar.bz2
XAPP_MKFONTSCALE_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_MKFONTSCALE_DEPENDENCIES = zlib freetype xlib_libfontenc xproto_xproto
-HOST_XAPP_MKFONTSCALE_DEPENDENCIES = host-zlib host-freetype host-xlib_libfontenc host-xproto_xproto
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 11/22] xlib_libXdmcp: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (9 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 10/22] xapp_mkfontscale: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 12/22] xfont_encodings: " Arnout Vandecappelle
` (11 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
index 6f513cf..5308206 100644
--- a/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
+++ b/package/x11r7/xlib_libXdmcp/xlib_libXdmcp.mk
@@ -10,7 +10,5 @@ XLIB_LIBXDMCP_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBXDMCP_INSTALL_STAGING = YES
XLIB_LIBXDMCP_DEPENDENCIES = xutil_util-macros xproto_xproto
-HOST_XLIB_LIBXDMCP_DEPENDENCIES = host-xutil_util-macros host-xproto_xproto
-
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 12/22] xfont_encodings: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (10 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 11/22] xlib_libXdmcp: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 13/22] xlib_libXfont: " Arnout Vandecappelle
` (10 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xfont_encodings/xfont_encodings.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xfont_encodings/xfont_encodings.mk b/package/x11r7/xfont_encodings/xfont_encodings.mk
index 8c4aac4..3207b06 100644
--- a/package/x11r7/xfont_encodings/xfont_encodings.mk
+++ b/package/x11r7/xfont_encodings/xfont_encodings.mk
@@ -9,7 +9,6 @@ XFONT_ENCODINGS_SOURCE = encodings-$(XFONT_ENCODINGS_VERSION).tar.bz2
XFONT_ENCODINGS_SITE = http://xorg.freedesktop.org/releases/individual/font
XFONT_ENCODINGS_MAKE_OPT =
XFONT_ENCODINGS_DEPENDENCIES = host-xapp_mkfontscale
-HOST_XFONT_ENCODINGS_DEPENDENCIES = host-xapp_mkfontscale
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 13/22] xlib_libXfont: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (11 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 12/22] xfont_encodings: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 14/22] xlib_libXau: " Arnout Vandecappelle
` (9 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libXfont/xlib_libXfont.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xlib_libXfont/xlib_libXfont.mk b/package/x11r7/xlib_libXfont/xlib_libXfont.mk
index 303992f..2b47e4e 100644
--- a/package/x11r7/xlib_libXfont/xlib_libXfont.mk
+++ b/package/x11r7/xlib_libXfont/xlib_libXfont.mk
@@ -13,7 +13,6 @@ XLIB_LIBXFONT_DEPENDENCIES = freetype xlib_libfontenc xlib_xtrans xproto_fontcac
XLIB_LIBXFONT_CONF_OPT = --disable-devel-docs
HOST_XLIB_LIBXFONT_CONF_OPT = --disable-devel-docs
-HOST_XLIB_LIBXFONT_DEPENDENCIES = host-freetype host-xlib_libfontenc host-xlib_xtrans host-xproto_fontcacheproto host-xproto_fontsproto host-xproto_xproto host-xfont_encodings
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 14/22] xlib_libXau: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (12 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 13/22] xlib_libXfont: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 15/22] xapp_xkbcomp: " Arnout Vandecappelle
` (8 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libXau/xlib_libXau.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/x11r7/xlib_libXau/xlib_libXau.mk b/package/x11r7/xlib_libXau/xlib_libXau.mk
index f7eb3bd..8d67501 100644
--- a/package/x11r7/xlib_libXau/xlib_libXau.mk
+++ b/package/x11r7/xlib_libXau/xlib_libXau.mk
@@ -10,7 +10,5 @@ XLIB_LIBXAU_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBXAU_INSTALL_STAGING = YES
XLIB_LIBXAU_DEPENDENCIES = xutil_util-macros xproto_xproto
-HOST_XLIB_LIBXAU_DEPENDENCIES = host-xutil_util-macros host-xproto_xproto
-
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 15/22] xapp_xkbcomp: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (13 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 14/22] xlib_libXau: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 16/22] libxcb: " Arnout Vandecappelle
` (7 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xapp_xkbcomp/xapp_xkbcomp.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xapp_xkbcomp/xapp_xkbcomp.mk b/package/x11r7/xapp_xkbcomp/xapp_xkbcomp.mk
index f37d106..f92588c 100644
--- a/package/x11r7/xapp_xkbcomp/xapp_xkbcomp.mk
+++ b/package/x11r7/xapp_xkbcomp/xapp_xkbcomp.mk
@@ -8,7 +8,6 @@ XAPP_XKBCOMP_VERSION = 1.1.1
XAPP_XKBCOMP_SOURCE = xkbcomp-$(XAPP_XKBCOMP_VERSION).tar.bz2
XAPP_XKBCOMP_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_XKBCOMP_DEPENDENCIES = xlib_libX11 xlib_libxkbfile
-HOST_XAPP_XKBCOMP_DEPENDENCIES = host-xlib_libX11 host-xlib_libxkbfile
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 16/22] libxcb: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (14 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 15/22] xapp_xkbcomp: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 17/22] xlib_libX11: removed redundant HOST_FOO_DEPENDENCIES and incorrect target dependency Arnout Vandecappelle
` (6 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/libxcb/libxcb.mk | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/package/x11r7/libxcb/libxcb.mk b/package/x11r7/libxcb/libxcb.mk
index a68779d..3e15951 100644
--- a/package/x11r7/libxcb/libxcb.mk
+++ b/package/x11r7/libxcb/libxcb.mk
@@ -17,10 +17,6 @@ LIBXCB_MAKE_OPT = XCBPROTO_XCBINCLUDEDIR=$(STAGING_DIR)/usr/share/xcb \
XCBPROTO_XCBPYTHONDIR=$(HOST_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages
LIBXCB_CONF_OPT = --disable-build-docs
-HOST_LIBXCB_DEPENDENCIES = \
- host-libxslt host-pthread-stubs host-xcb-proto host-xlib_libXdmcp \
- host-xlib_libXau host-python
-
HOST_LIBXCB_CONF_OPT = --disable-build-docs
$(eval $(call AUTOTARGETS))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 17/22] xlib_libX11: removed redundant HOST_FOO_DEPENDENCIES and incorrect target dependency
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (15 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 16/22] libxcb: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 18/22] xapp_bdftopcf: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
` (5 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
By deriving HOST_XLIB_LIBX11_DEPENDENCIES from XLIB_LIBX11_DEPENDENCIES, it
turned out that that one had a redundant dependency on xproto_bigreqsproto.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libX11/xlib_libX11.mk | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/package/x11r7/xlib_libX11/xlib_libX11.mk b/package/x11r7/xlib_libX11/xlib_libX11.mk
index e017fea..4d12a84 100644
--- a/package/x11r7/xlib_libX11/xlib_libX11.mk
+++ b/package/x11r7/xlib_libX11/xlib_libX11.mk
@@ -9,7 +9,7 @@ XLIB_LIBX11_SOURCE = libX11-$(XLIB_LIBX11_VERSION).tar.bz2
XLIB_LIBX11_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBX11_AUTORECONF = YES
XLIB_LIBX11_INSTALL_STAGING = YES
-XLIB_LIBX11_DEPENDENCIES = libxcb xutil_util-macros xlib_xtrans xlib_libXau xlib_libXdmcp xproto_kbproto xproto_xproto xproto_xextproto xproto_inputproto xproto_xf86bigfontproto xproto_bigreqsproto xproto_xcmiscproto host-xproto_xproto
+XLIB_LIBX11_DEPENDENCIES = libxcb xutil_util-macros xlib_xtrans xlib_libXau xlib_libXdmcp xproto_kbproto xproto_xproto xproto_xextproto xproto_inputproto xproto_xf86bigfontproto xproto_xcmiscproto host-xproto_xproto
XLIB_LIBX11_CONF_OPT = \
--disable-malloc0returnsnull \
--with-xcb \
@@ -19,8 +19,6 @@ XLIB_LIBX11_CONF_OPT = \
HOST_XLIB_LIBX11_CONF_OPT = \
--disable-specs
-HOST_XLIB_LIBX11_DEPENDENCIES = host-xproto_xextproto host-libxcb host-xutil_util-macros host-xlib_xtrans host-xlib_libXau host-xlib_libXdmcp host-xproto_kbproto host-xproto_xproto host-xproto_xextproto host-xproto_inputproto host-xproto_xf86bigfontproto xproto_bigreqsproto host-xproto_xcmiscproto
-
# src/util/makekeys is executed at build time to generate ks_tables.h, so
# it should get compiled for the host. The libX11 makefile unfortunately
# doesn't know about cross compilation so this doesn't work.
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 18/22] xapp_bdftopcf: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (16 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 17/22] xlib_libX11: removed redundant HOST_FOO_DEPENDENCIES and incorrect target dependency Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 19/22] xlib_libxkbfile: " Arnout Vandecappelle
` (4 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xapp_bdftopcf/xapp_bdftopcf.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xapp_bdftopcf/xapp_bdftopcf.mk b/package/x11r7/xapp_bdftopcf/xapp_bdftopcf.mk
index c2d6335..00ce339 100644
--- a/package/x11r7/xapp_bdftopcf/xapp_bdftopcf.mk
+++ b/package/x11r7/xapp_bdftopcf/xapp_bdftopcf.mk
@@ -8,7 +8,6 @@ XAPP_BDFTOPCF_VERSION = 1.0.2
XAPP_BDFTOPCF_SOURCE = bdftopcf-$(XAPP_BDFTOPCF_VERSION).tar.bz2
XAPP_BDFTOPCF_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_BDFTOPCF_DEPENDENCIES = xlib_libXfont
-HOST_XAPP_BDFTOPCF_DEPENDENCIES = host-xlib_libXfont
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 19/22] xlib_libxkbfile: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (17 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 18/22] xapp_bdftopcf: removed redundant HOST_FOO_DEPENDENCIES Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 20/22] xfont_font-util: " Arnout Vandecappelle
` (3 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libxkbfile/xlib_libxkbfile.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/x11r7/xlib_libxkbfile/xlib_libxkbfile.mk b/package/x11r7/xlib_libxkbfile/xlib_libxkbfile.mk
index d80fa0f..b964593 100644
--- a/package/x11r7/xlib_libxkbfile/xlib_libxkbfile.mk
+++ b/package/x11r7/xlib_libxkbfile/xlib_libxkbfile.mk
@@ -10,7 +10,5 @@ XLIB_LIBXKBFILE_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBXKBFILE_INSTALL_STAGING = YES
XLIB_LIBXKBFILE_DEPENDENCIES = xlib_libX11 xproto_kbproto
-HOST_XLIB_LIBXKBFILE_DEPENDENCIES = host-xlib_libX11 host-xproto_kbproto
-
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 20/22] xfont_font-util: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (18 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 19/22] xlib_libxkbfile: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 21/22] xlib_libfontenc: " Arnout Vandecappelle
` (2 subsequent siblings)
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xfont_font-util/xfont_font-util.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/x11r7/xfont_font-util/xfont_font-util.mk b/package/x11r7/xfont_font-util/xfont_font-util.mk
index 680fdc7..c5243ad 100644
--- a/package/x11r7/xfont_font-util/xfont_font-util.mk
+++ b/package/x11r7/xfont_font-util/xfont_font-util.mk
@@ -11,7 +11,5 @@ XFONT_FONT_UTIL_DEPENDENCIES = host-pkg-config
XFONT_FONT_UTIL_INSTALL_STAGING = YES
XFONT_FONT_UTIL_INSTALL_TARGET = NO
-HOST_XFONT_FONT_UTIL_DEPENDENCIES = host-pkg-config
-
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 21/22] xlib_libfontenc: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (19 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 20/22] xfont_font-util: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-16 13:58 ` [Buildroot] [PATCH resend 22/22] xapp_mkfontdir: " Arnout Vandecappelle
2012-01-17 22:35 ` [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Peter Korsgaard
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xlib_libfontenc/xlib_libfontenc.mk | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/package/x11r7/xlib_libfontenc/xlib_libfontenc.mk b/package/x11r7/xlib_libfontenc/xlib_libfontenc.mk
index 948e244..eef592a 100644
--- a/package/x11r7/xlib_libfontenc/xlib_libfontenc.mk
+++ b/package/x11r7/xlib_libfontenc/xlib_libfontenc.mk
@@ -10,7 +10,5 @@ XLIB_LIBFONTENC_SITE = http://xorg.freedesktop.org/releases/individual/lib
XLIB_LIBFONTENC_INSTALL_STAGING = YES
XLIB_LIBFONTENC_DEPENDENCIES = zlib xproto_xproto
-HOST_XLIB_LIBFONTENC_DEPENDENCIES = host-zlib host-xproto_xproto
-
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] [PATCH resend 22/22] xapp_mkfontdir: removed redundant HOST_FOO_DEPENDENCIES
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (20 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 21/22] xlib_libfontenc: " Arnout Vandecappelle
@ 2012-01-16 13:58 ` Arnout Vandecappelle
2012-01-17 22:35 ` [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Peter Korsgaard
22 siblings, 0 replies; 29+ messages in thread
From: Arnout Vandecappelle @ 2012-01-16 13:58 UTC (permalink / raw)
To: buildroot
From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
package/x11r7/xapp_mkfontdir/xapp_mkfontdir.mk | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/package/x11r7/xapp_mkfontdir/xapp_mkfontdir.mk b/package/x11r7/xapp_mkfontdir/xapp_mkfontdir.mk
index 3957ba6..8047b21 100644
--- a/package/x11r7/xapp_mkfontdir/xapp_mkfontdir.mk
+++ b/package/x11r7/xapp_mkfontdir/xapp_mkfontdir.mk
@@ -8,7 +8,6 @@ XAPP_MKFONTDIR_VERSION = 1.0.5
XAPP_MKFONTDIR_SOURCE = mkfontdir-$(XAPP_MKFONTDIR_VERSION).tar.bz2
XAPP_MKFONTDIR_SITE = http://xorg.freedesktop.org/releases/individual/app
XAPP_MKFONTDIR_DEPENDENCIES = xapp_mkfontscale
-HOST_XAPP_MKFONTDIR_DEPENDENCIES = host-xapp_mkfontscale
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))
--
1.7.8.3
^ permalink raw reply related [flat|nested] 29+ messages in thread* [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically
2012-01-16 13:58 [Buildroot] Derive HOST_FOO_DEPENDENCIES automatically Arnout Vandecappelle
` (21 preceding siblings ...)
2012-01-16 13:58 ` [Buildroot] [PATCH resend 22/22] xapp_mkfontdir: " Arnout Vandecappelle
@ 2012-01-17 22:35 ` Peter Korsgaard
22 siblings, 0 replies; 29+ messages in thread
From: Peter Korsgaard @ 2012-01-17 22:35 UTC (permalink / raw)
To: buildroot
>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:
Arnout> This patch series derives HOST_FOO_DEPENDENCIES automatically from
Arnout> FOO_DEPENDENCIES. It is a repost of my earlier patch series,
Arnout> rebased on the current master.
Arnout> I only compile-tested some of the modified packages. However, I
Arnout> checked that 'make host-foo-show-depends' outputs the same result.
Arnout> There are two exceptions:
Arnout> host-libxcb: the dependency on host-xcb-proto now appears twice.
Arnout> This is harmless.
Arnout> host-xlib_libX11: also some reordering, which should be OK. I also
Arnout> removed the dependency on xproto_bigreqsproto, which doesn't seem to
Arnout> be needed. *This one really requires testing.*
Arnout> ---
Arnout> Arnout Vandecappelle (Essensium/Mind) (22):
Arnout> package: derive HOST_FOO_DEPENDENCIES from FOO_DEPENDENCIES
Arnout> atk: removed redundant HOST_FOO_DEPENDENCIES
Arnout> cramfs: removed redundant HOST_FOO_DEPENDENCIES
Arnout> libpng: removed redundant HOST_FOO_DEPENDENCIES
Arnout> fontconfig: removed redundant HOST_FOO_DEPENDENCIES
Arnout> mpc: removed redundant HOST_FOO_DEPENDENCIES
Arnout> libxml-parser-perl: removed redundant HOST_FOO_DEPENDENCIES
Arnout> squashfs3: removed redundant HOST_FOO_DEPENDENCIES
Arnout> mpfr: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xapp_mkfontscale: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libXdmcp: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xfont_encodings: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libXfont: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libXau: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xapp_xkbcomp: removed redundant HOST_FOO_DEPENDENCIES
Arnout> libxcb: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libX11: removed redundant HOST_FOO_DEPENDENCIES and incorrect target dependency
Arnout> xapp_bdftopcf: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libxkbfile: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xfont_font-util: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xlib_libfontenc: removed redundant HOST_FOO_DEPENDENCIES
Arnout> xapp_mkfontdir: removed redundant HOST_FOO_DEPENDENCIES
Committed entire series, thanks!
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 29+ messages in thread