From patchwork Sat Apr 2 17:34:31 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 605437 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 3qclkd2PYKz9sCk for ; Sun, 3 Apr 2016 03:35:05 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 91E7C31259; Sat, 2 Apr 2016 17:35:04 +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 cmvrZVUEZ009; Sat, 2 Apr 2016 17:35:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 927A031356; Sat, 2 Apr 2016 17:34:55 +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 B30961C29C9 for ; Sat, 2 Apr 2016 17:34:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AEC9689059 for ; Sat, 2 Apr 2016 17:34:45 +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 dwoUy+wgVoh2 for ; Sat, 2 Apr 2016 17:34:42 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by hemlock.osuosl.org (Postfix) with ESMTPS id 50B2189025 for ; Sat, 2 Apr 2016 17:34:42 +0000 (UTC) Received: from fwd10.aul.t-online.de (fwd10.aul.t-online.de [172.20.26.152]) by mailout03.t-online.de (Postfix) with SMTP id CD538330B7; Sat, 2 Apr 2016 19:34:39 +0200 (CEST) Received: from fli4l.lan.fli4l (ZBMzD8ZZ8h5dYn-l2e9F9+ELZ-PlYWXHsxO+WafhHBaObSQu1JyfUJ-JE3bdD5AQj5@[84.178.251.170]) by fwd10.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1amPRX-0cf1KC0; Sat, 2 Apr 2016 19:34:39 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:36050 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.87) (envelope-from ) id 1amPRW-0001Mu-Px; Sat, 02 Apr 2016 19:34:39 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 2 Apr 2016 19:34:31 +0200 Message-Id: <1459618474-11464-4-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.8.0.rc3 In-Reply-To: <1459618474-11464-1-git-send-email-bernd.kuhls@t-online.de> References: <1459618474-11464-1-git-send-email-bernd.kuhls@t-online.de> X-ID: ZBMzD8ZZ8h5dYn-l2e9F9+ELZ-PlYWXHsxO+WafhHBaObSQu1JyfUJ-JE3bdD5AQj5 X-TOI-MSGID: 7f0a8d4a-d5f8-4067-9c4f-beae80c945ea Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v2 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)