From patchwork Tue Mar 29 22:17:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 603162 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 3qZQBM1X4pz9sBM for ; Wed, 30 Mar 2016 09:17:31 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 755C1A5E17; Tue, 29 Mar 2016 22:17:30 +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 c1YbVDbfp4kd; Tue, 29 Mar 2016 22:17:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3422AA5D0F; Tue, 29 Mar 2016 22:17:29 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 302BE1C101F for ; Tue, 29 Mar 2016 22:17:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 2AF3788835 for ; Tue, 29 Mar 2016 22:17:28 +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 haYWlJM+-7Nm for ; Tue, 29 Mar 2016 22:17:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by hemlock.osuosl.org (Postfix) with ESMTPS id 9CA4987E49 for ; Tue, 29 Mar 2016 22:17:26 +0000 (UTC) Received: from fwd23.aul.t-online.de (fwd23.aul.t-online.de [172.20.26.128]) by mailout05.t-online.de (Postfix) with SMTP id D803312520F; Wed, 30 Mar 2016 00:17:23 +0200 (CEST) Received: from fli4l.lan.fli4l (EfXzZsZlZhhQA94KKFc-OIypasO5uEDC8fqfALAlBsXjX-zwk-8xiOdEvRwMLAUZ1Y@[84.178.240.79]) by fwd23.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1al1wx-0JPs7E0; Wed, 30 Mar 2016 00:17:23 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:38480 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1al1ww-0005os-70; Wed, 30 Mar 2016 00:17:22 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Wed, 30 Mar 2016 00:17:16 +0200 Message-Id: <1459289839-6230-3-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.0.rc3 In-Reply-To: <1459289839-6230-1-git-send-email-bernd.kuhls@t-online.de> References: <1459289839-6230-1-git-send-email-bernd.kuhls@t-online.de> X-ID: EfXzZsZlZhhQA94KKFc-OIypasO5uEDC8fqfALAlBsXjX-zwk-8xiOdEvRwMLAUZ1Y X-TOI-MSGID: 5bf7b3b8-47a7-44e9-bcc8-59859e34e5bc Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 3/6] package/ffmpeg: cosmetic change for the mips fpu option 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" From: Vicente Olivert Riera Signed-off-by: Vicente Olivert Riera Signed-off-by: Bernd Kuhls --- package/ffmpeg/ffmpeg.mk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/package/ffmpeg/ffmpeg.mk b/package/ffmpeg/ffmpeg.mk index 26633e4..49fc0d9 100644 --- a/package/ffmpeg/ffmpeg.mk +++ b/package/ffmpeg/ffmpeg.mk @@ -429,11 +429,9 @@ FFMPEG_CONF_OPTS += --enable-neon endif ifeq ($(BR2_MIPS_SOFT_FLOAT),y) -FFMPEG_CONF_OPTS += \ - --disable-mipsfpu +FFMPEG_CONF_OPTS += --disable-mipsfpu else -FFMPEG_CONF_OPTS += \ - --enable-mipsfpu +FFMPEG_CONF_OPTS += --enable-mipsfpu endif ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y)