diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-17 15:46:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-24 23:26:48 +0200 |
commit | b36a5894809b71b65da3fcfa8ba4b2a645c01194 (patch) | |
tree | c7a288ee794e9c2aedb1f4cea8393f6629c40790 /package | |
parent | 6beeb755fa41a24ef54c189b8ae723534fa15c92 (diff) | |
download | buildroot-novena-b36a5894809b71b65da3fcfa8ba4b2a645c01194.tar.gz buildroot-novena-b36a5894809b71b65da3fcfa8ba4b2a645c01194.zip |
xorg: remove references to non-existing configuration options
The option BR2_PACKAGE_TINY, BR2_PACKAGE_XORG and BR2_PACKAGE_XGGI
don't exist, so do not use them to find the value of the $(XSERVER)
variable.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 7daa3b404..32aa259fa 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -384,18 +384,9 @@ endif # X Windowing system XSERVER:= -ifeq ($(BR2_PACKAGE_TINYX),y) -XSERVER+=tinyx -endif -ifeq ($(BR2_PACKAGE_XORG),y) -XSERVER+=xorg -endif ifeq ($(BR2_PACKAGE_XORG7),y) XSERVER+=xserver_xorg-server endif -ifeq ($(BR2_PACKAGE_XGGI),y) -XSERVER+=xggi -endif X11_PREFIX:=$(strip $(subst ",, $(BR2_X11_PREFIX))) #")) |