From 9bc7b1d4ae694b818f941410d1ff59316a2bba6e Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Mon, 19 Sep 2011 22:57:38 +0200
Subject: [PATCH] x11r7: make package globally visible

All x11r7 .mk files were only included into the global chain of
makefile includes if the BR2_PACKAGE_XORG7 option was enabled. This is
not the standard way to do things in Buildroot, and it even breaks
things like running "make <pkg>-*" for a x11r7 package even if X.org
is not selected.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
 package/x11r7/x11r7.mk | 2 --
 1 file changed, 2 deletions(-)

diff --git a/package/x11r7/x11r7.mk b/package/x11r7/x11r7.mk
index 7c7ae6905b..ea0363f6a0 100644
--- a/package/x11r7/x11r7.mk
+++ b/package/x11r7/x11r7.mk
@@ -1,3 +1 @@
-ifeq ($(BR2_PACKAGE_XORG7),y)
 include package/x11r7/*/*.mk
-endif