From patchwork Wed Oct 8 19:37:06 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 397710 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 1B08F1400AA for ; Thu, 9 Oct 2014 06:37:19 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5D0F4A25E4; Wed, 8 Oct 2014 19:37:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id pmRyxtvucodq; Wed, 8 Oct 2014 19:37:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D2071A25FA; Wed, 8 Oct 2014 19:37:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D06051C2BC3 for ; Wed, 8 Oct 2014 19:37:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C9FC491CEA for ; Wed, 8 Oct 2014 19:37:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nj65BN1VKckL for ; Wed, 8 Oct 2014 19:37:11 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by whitealder.osuosl.org (Postfix) with ESMTP id 9F34891BD4 for ; Wed, 8 Oct 2014 19:37:11 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 565756FD; Wed, 8 Oct 2014 21:37:13 +0200 (CEST) Received: from localhost (AToulouse-657-1-1025-243.w90-45.abo.wanadoo.fr [90.45.71.243]) by mail.free-electrons.com (Postfix) with ESMTPSA id 14F671BE; Wed, 8 Oct 2014 21:37:13 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Wed, 8 Oct 2014 21:37:06 +0200 Message-Id: <1412797026-16602-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1412797026-16602-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1412797026-16602-1-git-send-email-thomas.petazzoni@free-electrons.com> Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH 2/2] x264: fix non-standard indentation of variable definitions 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" Signed-off-by: Thomas Petazzoni --- package/x264/x264.mk | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package/x264/x264.mk b/package/x264/x264.mk index ccf8e2b..35d9fef 100644 --- a/package/x264/x264.mk +++ b/package/x264/x264.mk @@ -13,21 +13,21 @@ X264_LICENSE_FILES = COPYING X264_INSTALL_STAGING = YES ifeq ($(BR2_i386)$(BR2_x86_64),y) - X264_DEPENDENCIES += host-yasm +X264_DEPENDENCIES += host-yasm else - X264_CONF_OPTS += --disable-asm +X264_CONF_OPTS += --disable-asm endif ifeq ($(BR2_PREFER_STATIC_LIB),) - X264_CONF_OPTS += --enable-pic --enable-shared +X264_CONF_OPTS += --enable-pic --enable-shared endif ifeq ($(BR2_PACKAGE_X264_CLI),) - X264_CONF_OPTS += --disable-cli +X264_CONF_OPTS += --disable-cli endif ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),) - X264_CONF_OPTS += --disable-thread +X264_CONF_OPTS += --disable-thread endif # the configure script is not generated by autoconf