Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/opus/files: 1.1-fix-configure.ac-shell-bug.patch
Date: Thu, 28 May 2015 10:06:44
Message-Id: 20150528100637.AFC29A10@oystercatcher.gentoo.org
1 yngwin 15/05/28 10:06:37
2
3 Added: 1.1-fix-configure.ac-shell-bug.patch
4 Log:
5 Add non-bash-shell patch from upstream provided in bug #510918
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
8
9 Revision Changes Path
10 1.1 media-libs/opus/files/1.1-fix-configure.ac-shell-bug.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opus/files/1.1-fix-configure.ac-shell-bug.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/opus/files/1.1-fix-configure.ac-shell-bug.patch?rev=1.1&content-type=text/plain
14
15 Index: 1.1-fix-configure.ac-shell-bug.patch
16 ===================================================================
17 --- opus-1.1.orig/configure.ac
18 +++ opus-1.1/configure.ac
19 @@ -333,9 +333,9 @@ AS_IF([test x"${enable_asm}" = x"yes"],[
20
21 AM_CONDITIONAL([CPU_ARM], [test "$cpu_arm" = "yes"])
22 AM_CONDITIONAL([OPUS_ARM_INLINE_ASM],
23 - [test x"${inline_optimization:0:3}" = x"ARM"])
24 + [test x"${inline_optimization%% *}" = x"ARM"])
25 AM_CONDITIONAL([OPUS_ARM_EXTERNAL_ASM],
26 - [test x"${asm_optimization:0:3}" = x"ARM"])
27 + [test x"${asm_optimization%% *}" = x"ARM"])
28
29 AS_IF([test x"$enable_rtcd" = x"yes"],[
30 AS_IF([test x"$rtcd_support" != x"no"],[