From patchwork Wed Oct 21 03:10:25 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rodrigo Rebello X-Patchwork-Id: 533588 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 80523140DAE for ; Wed, 21 Oct 2015 14:11:01 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=buL24inT; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 048E08A9E0; Wed, 21 Oct 2015 03:11:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xuoYwmX-hoWt; Wed, 21 Oct 2015 03:10:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 098E78AB05; Wed, 21 Oct 2015 03:10:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 767491C44C4 for ; Wed, 21 Oct 2015 03:10:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 70B6823575 for ; Wed, 21 Oct 2015 03:10:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8ld0LbyFS5BO for ; Wed, 21 Oct 2015 03:10:56 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-qk0-f172.google.com (mail-qk0-f172.google.com [209.85.220.172]) by silver.osuosl.org (Postfix) with ESMTPS id AC30425DE4 for ; Wed, 21 Oct 2015 03:10:54 +0000 (UTC) Received: by qkfm62 with SMTP id m62so18734259qkf.1 for ; Tue, 20 Oct 2015 20:10:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=VKUeoQpQSkCaCxwxG2/LhAluA+YrUa+rDnIREplLlHw=; b=buL24inTceMTL7HRuVVwTDKoBMgmoVZIzNvHbvJDfTpU+T/ZOLTJgbPqpkQgdS6dl+ SQzNDp33h/tAa6Qw83G25w6iwD0W9oEsNi4lCAKHeVs+AIhxil/iyhgG58q6E5yPmNPV vH92cNChNcPHhmGz3WGmU0wnwnJSMWhflYKz1z29EzeNdKqvaNYBpY15S93eV3zVEZiJ 0opmvc/zbxfAyl7lk7uuKkD7MH24OWwdAT9KIuK+itCHWtePZjUBD/TcylmVNvDRyyt9 rEgf6pK0mKmLqSP5qc5qfDG9wK4CN8AoS4qU0+3lHUFNFke98jvtbomWIc5WesMHAace IXIQ== X-Received: by 10.140.134.80 with SMTP id 77mr8556905qhg.103.1445397053787; Tue, 20 Oct 2015 20:10:53 -0700 (PDT) Received: from localhost.localdomain ([187.107.24.50]) by smtp.gmail.com with ESMTPSA id k64sm2519241qkh.10.2015.10.20.20.10.51 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 20 Oct 2015 20:10:52 -0700 (PDT) From: Rodrigo Rebello To: buildroot@buildroot.org Date: Wed, 21 Oct 2015 01:10:25 -0200 Message-Id: <1445397025-21211-1-git-send-email-rprebello@gmail.com> X-Mailer: git-send-email 2.1.4 Cc: Rodrigo Rebello Subject: [Buildroot] [PATCH 1/1] sdl: fix incorrect SDL_CONF_OPTS assignment X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The option --enable-video-directfb=no was being assigned to SDL_CONF_OPTS instead of being appended to it when BR2_PACKAGE_SDL_DIRECTFB was disabled. That would clobber any options previously added to SDL_CONF_OPTS (namely --enable-video-fbcon=yes|no). Signed-off-by: Rodrigo Rebello --- package/sdl/sdl.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk index 05d9a54..78eb4dd 100644 --- a/package/sdl/sdl.mk +++ b/package/sdl/sdl.mk @@ -34,7 +34,7 @@ SDL_DEPENDENCIES += directfb SDL_CONF_OPTS += --enable-video-directfb=yes SDL_CONF_ENV = ac_cv_path_DIRECTFBCONFIG=$(STAGING_DIR)/usr/bin/directfb-config else -SDL_CONF_OPTS = --enable-video-directfb=no +SDL_CONF_OPTS += --enable-video-directfb=no endif ifeq ($(BR2_PACKAGE_SDL_QTOPIA),y)